Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
Thanks, that works, but can you explain why it does that? – mrkentApr 27 '12 at 16:01
Also, what's the best way to tail and list them in natural numeric order, like the way ls -v does. I think just using tail */filename, directories 1, 10, 11, 12, etc would be listed together, while I want 1, 2, 3, 4, ... to be listed together. Thanks. – mrkentApr 27 '12 at 16:08
head and tail are just designed differently; tail requires -n, head uses -n for any number n. You should post your other request as a separate question, to make it easier for others to find in the future. – chepnerApr 27 '12 at 16:33
Since the -v option is unique to GNU ls and not available in other utils it's easiest to use the output of ls directly as the "seed". Then we pipe it into xargs which builds the argument list in order it receives them from ls, and then runs tail on the whole thing.
tail -n 1 */filename. – Beta Apr 27 '12 at 15:58headandtailare just designed differently;tailrequires-n,headuses-nfor any numbern. You should post your other request as a separate question, to make it easier for others to find in the future. – chepner Apr 27 '12 at 16:33