This repository has been archived on 2021-04-12. You can view files and clone it, but cannot push or open issues or pull requests.
feiplogin/zip.sh

7 lines
116 B
Bash
Executable File

#!/bin/sh
ZIP_FILE=feiplogin.zip
if [ -f "$ZIP_FILE" ]; then
rm "$ZIP_FILE"
fi
zip -r "$ZIP_FILE" ./ -x .git/\*