Skip to content

Instantly share code, notes, and snippets.

@chibby0ne
Last active August 29, 2015 14:16
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 chibby0ne/bbb00e6d1323d724d43a to your computer and use it in GitHub Desktop.
Save chibby0ne/bbb00e6d1323d724d43a to your computer and use it in GitHub Desktop.
One-liner that lists all the directories in a give path, one line at a time
#!/bin/bash
find -maxdepth 1 -type d -print | grep -v \\.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment