diff --git a/scripts/organize b/scripts/organize new file mode 100755 index 0000000..f0b1264 --- /dev/null +++ b/scripts/organize @@ -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