Update 2024-12-12 18:58 OpenBSD/amd64-t14

This commit is contained in:
c0dev0id 2024-12-12 18:58:22 +01:00
parent 6a8edca474
commit fc5e2de67a

View File

@ -1,11 +0,0 @@
#!/bin/sh
find . -maxdepth 1 | grep -v ^.$ \
| while read file
do
date="$(stat -f "%Sm" -t %Y-%m "$file" )"
[ OLD-$date ] && mkdir -p OLD-$date
[ "$file" != "./OLD-$date" ] \
&& mv "$file" OLD-$date/
done
echo done.