home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / EmacsTeX / aa_m68k_Intel_Only / TeXmenu4.1 / Src / Converter / ISOLatin1ToNeXTSTEP < prev    next >
Encoding:
Text File  |  1995-06-12  |  323 b   |  17 lines

  1. #!/bin/sh
  2. #
  3. #    Umwandlung von ISOLatin1 Encoding nach
  4. #    NeXTSTEP Encoding 
  5. #        
  6. #    Harald Schlangmann 1992
  7. #
  8. #       ue  ae  oe  Ae  Oe  Ue  sz
  9. #
  10.  
  11. if [ "$1" = "" ]
  12.   then
  13.     tr '\374\344\366\304\326\334\337' '\366\331\360\205\226\232\373'
  14.   else
  15.     tr '\374\344\366\304\326\334\337' '\366\331\360\205\226\232\373' < $1
  16.   fi
  17.