home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / CLISP / CLISPSRC.TAR / clisp-1995-01-01 / utils / charset / from-atari < prev    next >
Encoding:
Text File  |  1994-07-08  |  273 b   |  9 lines

  1. #!/bin/sh
  2. # Usage: from-atari <atari-file> <isolatin-file>
  3. if test $# != 2; then
  4.   echo "Usage: ${CHARSETBINDIR}from-atari <atari-file> <isolatin-file>"
  5.   exit 1
  6. fi
  7. cat "$1" | ${CHARSETBINDIR}crlf-to-nl | ${CHARSETBINDIR}cv-fr-atari > "$2"
  8. ${CHARSETBINDIR}touchr "$1" "$2"
  9.