#! /bin/csh
#
#  Replace underscore by hyphen in file names - JDB, July 1990.

foreach i ($*)
  mv $i `echo $i | tr '_' '-'`
end
