home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #3 / amigamamagazinepolishissue1998.iso / szachy / gnu / amyboard-3.2.pl2 / bitmaps / unsigned.sh < prev   
Linux/UNIX/POSIX Shell Script  |  1995-03-08  |  159b  |  9 lines

  1. #! /bin/csh
  2.  
  3. foreach file ($*)
  4.   mv $file ${file}.old$$ && \
  5.   sed -e 's/static char/static unsigned char/' < $file.old$$ > $file && \
  6.   rm ${file}.old$$
  7. end
  8.  
  9.