diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-02-06 17:19:04 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-02-06 17:19:04 -0800 |
commit | 97c5bf6321b5d672aa7eb0f222ad06a4de05fd46 (patch) | |
tree | 14e21103c0a1ddb0b50f1716a38d0dcb2e83a0d9 /clean.tl | |
parent | 6522f00c75f65937223aa582cb8c6466570bd923 (diff) | |
download | gtk-demos-97c5bf6321b5d672aa7eb0f222ad06a4de05fd46.tar.gz gtk-demos-97c5bf6321b5d672aa7eb0f222ad06a4de05fd46.tar.bz2 gtk-demos-97c5bf6321b5d672aa7eb0f222ad06a4de05fd46.zip |
Add cleaning utility.
Diffstat (limited to 'clean.tl')
-rwxr-xr-x | clean.tl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/clean.tl b/clean.tl new file mode 100755 index 0000000..63e0d0a --- /dev/null +++ b/clean.tl @@ -0,0 +1,7 @@ +#!/usr/bin/env txr + +(defun clean-all () + (each ((file (glob "*.tlo"))) + (remove-path file))) + +(clean-all) |