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

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

  •  21-06-2023
  •  | 
  •  

質問

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?

役に立ちましたか?

解決

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

ls | head -10

他のヒント

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.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top