This repository has been archived on 2021-04-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
feiplogin/zip.sh

6 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/\*