Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Also, a side note, I would rather just run "head massivefile" or even better "less massivefile" (because, most probably I'd want to see past what head shows by default). Running cat and then piping it to another program is inefficient, 2 forks + pipe.


But you miss out on this award if you don't use cat :p http://porkmail.org/era/unix/award.html


And on systems where head was not present (seen some earlier), but sed was, you could do:

sed nq file

where n is some positive integer, to print the first n lines of the file.

Also, body (the complement of head and tail :)

# body

sed -n $1,$2p $3




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: