On 07/15/10 13:34, Forest Oakwater wrote: > Would you consider updating the builtin > documentation and man page to match the behavior of the program?
That's already the case, surely. > Also, do you know of an efficient POSIX way to filter out the first N > lines of a text file? "tail -n +51", "sed 1,50d", "awk '50 < NR'"; take your pick.
