home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / CLISP / CLISPSRC.TAR / clisp-1995-01-01 / atari / all-from-atari < prev    next >
Encoding:
Text File  |  1992-11-14  |  169 b   |  11 lines

  1. #!/bin/sh
  2. # Usage: all-from-atari [file ...]
  3. for f in $*
  4. do
  5.   if test -f "$f"; then
  6.     echo converting $f
  7.     from-atari $f CONVERT.TMP
  8.     mv CONVERT.TMP $f
  9.   fi
  10. done
  11.