shouldnt be here

This commit is contained in:
michael 1998-09-10 11:50:36 +00:00
parent ffa48ed96e
commit f84768a3b2

View File

@ -1,12 +0,0 @@
#!/bin/csh
set fromext = $1
set toext = $2
shift
shift
foreach f ( $* )
set fromname = `basename $f $fromext`$fromext
if ( $f == $fromname ) then
set toname = `basename $f $fromext`$toext
mv $f $toname
endif
end