Skip to content

Instantly share code, notes, and snippets.

@dannvix
Last active August 29, 2015 14:07
Show Gist options
  • Save dannvix/c842b85315246ca02867 to your computer and use it in GitHub Desktop.
Save dannvix/c842b85315246ca02867 to your computer and use it in GitHub Desktop.
List all directories that contain >= 2 files/directories
#!/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