hey everybody,
I just wanted to know how I can print out with awk or others only one line and not a whole column what is made by print$1. I have a data which contains 205 lines and I want for example only the 6th line. I tried with this
BEGIN { RS = "" ; FS = "\n" }
{print $6}
...but it says
awk: record `TITLE = "title"
V...' too long
What's wrong with that. thanks a lot.