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   
Linux/UNIX/POSIX Shell Script  |  1995-08-12  |  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.