How can I sort ls -l /dev by type and major and minor device number?
- by Dennis Williamson
How can I sort the /dev directory by type and major and minor device number when doing ls -l?
The best way I've found so far is:
ls -l /dev | sort -k 1.1,1.2 -k 5n -k 6n | less
Is there a better way?