.git broken, restart

This commit is contained in:
dangerboot
2026-01-23 08:55:18 +01:00
commit d1be8ebdca
206 changed files with 8431 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/bash
ARCHIVE_DIR=${2:"/tmp/clean-dict.del"}
mkdir -p $ARCHIVE_DIR
if [ "$#" -lt 1 ] ; then
find . -type f -size -"${SIZE_MIN}c" -exec mv {} $ARCHIVE_DIR \;
exit 1
elif
find . -type f -size -"${SIZE_MIN}c" -delete
fi
exit 0