Added script to clean up trash files

This commit is contained in:
Erik Thuning 2023-11-24 16:22:42 +01:00
parent a0bba02840
commit 6da6e92d46

9
cleanup.sh Executable file

@ -0,0 +1,9 @@
#!/bin/sh
set -ue
# Cleanup emacs backups
find . -name '*~' -delete
# Cleanup hanging test dirs
find . -regextype egrep -regex './[0-9a-f-]{36}/?.*' -delete