I understand that the command to list alphabetically the file names in current directory is ls.
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