Skip to content

Instantly share code, notes, and snippets.

@ckunte
Created June 16, 2019 03:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckunte/ea6d9cbb7867a5b65d2a3e86dc40783a to your computer and use it in GitHub Desktop.
Save ckunte/ea6d9cbb7867a5b65d2a3e86dc40783a to your computer and use it in GitHub Desktop.
Purge LaTeX compile files
#!/usr/bin/env bash
echo -n "Purge LaTeX compile files.."
find ~/. -name "*.log" -type f -delete
find ~/. -name "*.out" -type f -delete
find ~/. -name "*.aux" -type f -delete
find ~/. -name "*.gz" -type f -delete
echo "done."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment