#!/bin/sh for each in $1* do echo "Looking at... $each" more $each echo "Tell me about $each:" read INPUT if [ "$INPUT" = "DELETE" ] then echo "OK, into the shitbin..." rm $each else echo "$each $INPUT" >>.musings fi done echo "Appending your new crap to .descs...." cat .musings >>.descs