#! /bin/csh -f
# the above should be the first line of any shell script
#   (the "-f" tells the shell to startup "fast"--i.e., ignore .cshrc)
# remember to chmod scripts so they are executable.
#


if ($#argv == 0) then
  echo "usage: title [options]"
  exit
  endif

foreach i ($argv)
  mv $garbageCan/$i .
  end

echo The directories in ~ are:
foreach i (*)
if (-d $i) echo $i is a directory
end

