4 lines
113 B
Shell
Executable file
4 lines
113 B
Shell
Executable file
#!/bin/sh
|
|
if [ ! -d zips ]; then mkdir zips; fi
|
|
zip -q zips/$1 * -x examples*.zip zip.sh
|
|
cp zips/$1 examples.zip
|