Skip to content

Instantly share code, notes, and snippets.

@mohan-cao
Created September 26, 2017 12:26
Show Gist options
  • Select an option

  • Save mohan-cao/f37aedd5b01efc224ebc34cf83d89693 to your computer and use it in GitHub Desktop.

Select an option

Save mohan-cao/f37aedd5b01efc224ebc34cf83d89693 to your computer and use it in GitHub Desktop.
Cleans your project folder for submission
#!/bin/bash
mvn clean
find . -type f -name .DS_STORE -delete
find . -type d -name .idea -exec rm -r "{}" \;
find . -name .gitignore -delete
find . -type f -name "*.iml" -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment