6092e06459
There is more than that here. I had a bad commit of a bunch of temporary files, I had to reset back in time, and now I am doing a massive commit. Sorry.
22 lines
450 B
Bash
22 lines
450 B
Bash
#! /bin/bash
|
|
rm --f *.tex
|
|
rm --f *.toc
|
|
rm --f *.aux
|
|
rm --f *.log
|
|
rm --f *.out
|
|
rm --f ./*_files/*.png
|
|
rm --f Kalman_and_Bayesian_Filters_in_Python.ipynb
|
|
rm --f Kalman_and_Bayesian_Filters_in_Python.toc
|
|
rm --f Kalman_and_Bayesian_Filters_in_Python.tex
|
|
rm --f short.ipynb
|
|
rm --f chapter.ipynb
|
|
rm --f chapter.pdf
|
|
|
|
rmdir ./*_files/ 2> /dev/null
|
|
|
|
if (( $# == 1)); then
|
|
if [ "@1" == all ]; then
|
|
rm Kalman_and_Bayesian_Filters_in_Python.pdf;
|
|
fi
|
|
fi
|