Git/suuid/: New commits
[sunny256-utils.git] / emptydirs
blob1ea76805636fef326bd8a9f9b44815f2031e9bba
1 #!/bin/sh
3 #==============================================================================
4 # emptydirs
5 # File ID: 4a7f552e-875f-11de-97e4-00248cd5cf1e
7 # Lists empty directories in a subtree
8 #==============================================================================
10 progname=emptydirs
11 VERSION=0.1.0
13 find . "$@" -type d -empty | LC_ALL=C sort
15 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :