home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 44
/
Amiga_Dream_44.iso
/
Amiga
/
jeux
/
plateau
/
AmyBoardSrc.lha
/
xboard-3.3.pl0
/
bitmaps
/
unsigned.sh
< prev
Wrap
Linux/UNIX/POSIX Shell Script
|
1995-08-12
|
159b
|
9 lines
#! /bin/csh
foreach file ($*)
mv $file ${file}.old$$ && \
sed -e 's/static char/static unsigned char/' < $file.old$$ > $file && \
rm ${file}.old$$
end