mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-16 14:54:51 +00:00
a089fb94a6
We use a regex to delete all files in `./editions/*/output/*`
6 lines
96 B
Bash
Executable File
6 lines
96 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Remove any output files
|
|
|
|
find . -regex "^./editions/[a-z\.-]*/output/.*" -delete
|