#!/bin/sh
#
# File ~/bin/trash
# Moves its argment to the directory ~/trash/

if [ $TRASH='' ]; then
  #TRASH='~/.Trash'
  TRASH='/afs/cs.pitt.edu/usr0/philip/.Trash'
fi
#echo $*
#if [ $1=="-r" ]; then
#    echo -r argument
#fi
if ! [ -d $TRASH ]; then
    echo Creating $TRASH
    mkdir $TRASH
    echo Done.
fi
mv -f $* $TRASH


