dots/bin/pack
riley e1fdca2a9c Initial Commit
Add .bashrc
Add .bash_profile
Add .vimrc
Add .gitconfig

Add bin/colortest
Add bin/pack
2021-08-17 23:41:28 -04:00

19 lines
205 B
Text
Executable file

make clean
if [ -d "output" ]
then
rm -r output
fi
if [ -f "work.zip" ]
then
rm work.zip
fi
if [ -z "$1" ]
then
zip -r work.zip . -x "makefile"
else
zip -r work.zip $1 -x "makefile"
fi