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