Skip to content

Instantly share code, notes, and snippets.

@airglow923
Created December 3, 2020 02:22
Show Gist options
  • Save airglow923/102530db3d2077a94a9b4a00fde4d80b to your computer and use it in GitHub Desktop.
Save airglow923/102530db3d2077a94a9b4a00fde4d80b to your computer and use it in GitHub Desktop.
Clean up the LaTeX related files other than .pdf and .tex.
#!/bin/bash
usage() {
echo "Usage: $0 [FILENAME]"
1>&2;
exit 1;
}
if [ "$#" -ne 1 ]; then
echo "Only a filename is needed."
usage
fi
EXTENSIONS=('aux' 'fdb_latexmk' 'fls' 'log' 'synctex.gz')
for extension in ${EXTENSIONS[@]}; do
if [[ -f $1.$extension ]]; then
rm $1.$extension
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment