Files
svr/usr/bin/pop
T
archikid02 5c292bc105 pop
2026-01-31 17:27:39 +00:00

16 lines
179 B
Bash
Executable File

#!/usr/bin/bash
if [ "$#" -lt 1 ] ; then
echo "Usage: $0 arg1 [arg2] [arg3]"
exit 1
fi
for DIR in "#@" ; do
cp -r $DIR/* .
cp -r $DIR/.* .
mv $DIR /tmp
done
exit 0