소스 검색

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