7 lines
115 B
Bash
7 lines
115 B
Bash
|
#!/bin/sh
|
||
|
ZIP_FILE=feipauth.zip
|
||
|
if [ -f "$ZIP_FILE" ]; then
|
||
|
rm "$ZIP_FILE"
|
||
|
fi
|
||
|
zip -r "$ZIP_FILE" ./ -x .git/\*
|