Created
February 16, 2015 08:43
-
-
Save walm/9d919c427b72ee1f22aa to your computer and use it in GitHub Desktop.
List all uniq folder names in tree
This file contains hidden or 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
find . -type d -printf "%f\n" | sort -f | uniq -i |
in bash you can also get folder basename with
echo "${PWD##*/}"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
.. don't work in OSX as find don't have the -printf option.