This commit is contained in:
2025-11-24 23:44:15 -08:00
parent 482196368e
commit 0a3d52affc

9
scripts/organize Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
# made to organize screenshots folder.
## makes directories named by the first ten chars of filenames ending in .png,-
## and copies (NOT moves) said file into them.
for file in *.png; do
DIRNAME=$(echo $file | cut -c1-10)
mkdir -p $DIRNAME
cp $file $DIRNAME
done