This repository has been archived on 2023-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
langue-phundrak-com/clean.fish

11 lines
285 B
Fish
Raw Normal View History

#!/usr/bin/env fish
set delfname "*.pdf" "*.tex" "*.aux" "*.log" "*.toc" "*.out" "*.html" "*.lol" "*.lot" "*.epub"
2019-09-03 14:35:33 +00:00
set deldname "auto" "_minted*" "svg-inkscape"
for f in $delfname
find -type f -name $f -delete
end
2019-10-23 17:14:03 +00:00
for d in $deldname
2019-07-05 20:33:38 +00:00
find -type d -name $d -exec rm -r {} +
end