Files
misc/scripts/organize
2025-11-24 23:44:15 -08:00

10 lines
280 B
Bash
Executable File

#!/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