Unix command to get top 10 from the sorted file names in current directory [closed]

StackOverflow https://stackoverflow.com/questions/22667946

  •  21-06-2023
  •  | 
  •  

Question

I understand that the command to list alphabetically the file names in current directory is ls.

But how can I get top 10 from the sorted file names in current directory?

Était-ce utile?

La solution

Use the command "head" to get the first ten lines:

ls | head -10

Autres conseils

With sorting:

ls | sort | head -10

A note that ls doesn't sort naturally. So a file that starts with T will show before a file beginning with a.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top