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/web/clean.fish
Lucien Cartier-Tilet c84aace663
Website now runs on Dart’s webdev
langue.phundrak.com now runs using the `webdev` tool from Dart.
Javascript code has been replaced with Dart code, and CSS code has
been replaced with SCSS code. To run the project, execute
`webdev serve` at the project’s root.
2019-12-12 15:44:23 +01:00

11 lines
276 B
Fish
Executable File

#!/usr/bin/env fish
set delfname "*.pdf" "*.tex" "*.aux" "*.log" "*.toc" "*.out" "*.html" "*.lol" "*.lot"
set deldname "auto" "_minted*" "svg-inkscape"
for f in $delfname
find -type f -name $f -delete
end
for d in $deldname
find -type d -name $d -exec rm -r {} +
end