#!/bin/bash -e
echo "this script moves the originals to ~/rubbish"
sleep 0.5
for A; do
	D="${A%.*}"
	mkdir -p "$D"
	clit "$A" "$D"/
	mr "$A"
done
