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

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

  •  21-06-2023
  •  | 
  •  

Domanda

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?

È stato utile?

Soluzione

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

ls | head -10

Altri suggerimenti

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top