TiddlyWiki5/bin/clean.sh
Jermolene a089fb94a6 Add clean.sh for removing build output
We use a regex to delete all files in `./editions/*/output/*`
2015-10-22 22:46:47 +01:00

5 lines
96 B
Bash
Executable file

#!/bin/bash
# Remove any output files
find . -regex "^./editions/[a-z\.-]*/output/.*" -delete