Skip to content

Instantly share code, notes, and snippets.

@stevekm
Created October 2, 2015 13:58
Show Gist options
  • Save stevekm/c29f8fc734276c6f358a to your computer and use it in GitHub Desktop.
Save stevekm/c29f8fc734276c6f358a to your computer and use it in GitHub Desktop.
Show only the directories in the ls output
#!/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