10 lines
182 B
Text
10 lines
182 B
Text
|
#!/bin/sh
|
||
|
|
||
|
if [ $# -lt 1 ]; then
|
||
|
echo 'Error: missing arguments' 1>&2
|
||
|
echo 'Usage: rmdirtree file [file ...]' 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
find "$@" -depth -type d -print0 | xargs -0 rmdir
|