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
115 B
Bash
Raw Normal View History

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