Last active
August 29, 2015 14:07
-
-
Save dannvix/c842b85315246ca02867 to your computer and use it in GitHub Desktop.
List all directories that contain >= 2 files/directories
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/sh | |
# dependencies: find, grep, sort, uniq, awk | |
echo 'List all files...' | |
find $1 | |
# output: | |
# a | |
# a/b | |
# a/b/c | |
# a/b/c/d | |
# a/b/c/d/e | |
# a/b/c/e | |
# a/p | |
# a/p/q | |
# a/p/q/r | |
# a/p/q/r/s | |
# a/p/q/r/s/t | |
# a/p/q/u | |
echo 'List all directories that contain >= 2 files/directories...' | |
find $1 | grep -o '.*/' | sort | uniq -d | |
# output: | |
# a/ | |
# a/b/c/ | |
# a/p/q/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment