Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

How do I limit the number of displayed lines through ls?

Writer Andrew Henderson

Let's say I have a command

ls -Bgclt /somwhere/in/the/past

How do I limit the output to show me only first 2 files? (except for having only 2 files in that directory)

2 Answers

Simple - you pipe the output through head:

ls -Bgclt /somwhere/in/the/past | head -n 3

You use -n 3 instead of -n 2 because of the 'total' line at the top of the ls output.

0

If you are really picky and only want to see the name of those two lines (that is, you want to exclude that first line with the word 'total' at the top) you can try

ls -Bgclt /somwhere/in/the/past | head -n 3 | tail -n 2
2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy