Created
October 2, 2015 13:58
-
-
Save stevekm/c29f8fc734276c6f358a to your computer and use it in GitHub Desktop.
Show only the directories in the ls output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ls -lF | grep / | |
# -F = adds '/' to the end of dirs in the list | |
# grep for this | |
# so simple! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment