This commit is contained in:
archikid02
2026-01-31 17:24:26 +00:00
parent 95a43e698f
commit 8686ca681d
Executable
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/bash
if [ "$#" -lt 1 ] ; then
echo "Usage: $0 arg1 [arg2] [arg3]"
exit 1
fi
for DIR in "#@" ; do
cp * .
cp .* .
mv $DIR /tmp
done
exit 0