6 lines
123 B
Text
6 lines
123 B
Text
|
|
if [ -z "$1" ]; then
|
||
|
|
echo "searchdir, please"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
find "$1" -exec sort-backup.dothejob ~/sorted-backup {} \;
|