home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
RISC DISC 2
/
RISC_DISC_2.iso
/
pd_share
/
utilities
/
cli
/
nspark
/
unix
/
ren
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-03-08
|
179 b
|
17 lines
#!/bin/sh
#
# Utility to rename source files for use on unix
#
cd h
for i in *; do
mv $i ../${i}.h
done
cd ..
rmdir h
cd c
for i in *; do
mv $i ../${i}.c
done
cd ..
rmdir c