浏览代码

shouldnt be here

michael 27 年之前
父节点
当前提交
f84768a3b2
共有 1 个文件被更改,包括 0 次插入12 次删除
  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