Skip to content

Instantly share code, notes, and snippets.

@kevinhooke
Created September 13, 2019 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinhooke/bc2ba9b1d4bc060be41b5bb337209dc0 to your computer and use it in GitHub Desktop.
Save kevinhooke/bc2ba9b1d4bc060be41b5bb337209dc0 to your computer and use it in GitHub Desktop.
ls list dirs in a single column
#from https://stackoverflow.com/questions/14352290/listing-only-directories-using-ls-in-bash-an-examination
ls -d */ | cut -f1 -d'/'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment