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