Browse Source

shouldnt be here

michael 27 years ago
parent
commit
f84768a3b2
1 changed files with 0 additions and 12 deletions
  1. 0 12
      docs/go32ex/changeext

+ 0 - 12
docs/go32ex/changeext

@@ -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