play-daemon-threaded/cleanup.sh
2023-11-24 16:22:42 +01:00

10 lines
160 B
Bash
Executable File

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