home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / text / mton.README < prev    next >
Encoding:
Text File  |  1991-01-21  |  2.2 KB  |  60 lines

  1. mton was created to allow me to use Macintosh EPS files on my new NeXT
  2. Cube. I later found it to be useful for converting any text files,
  3. including PostScript fonts, program listings, etc. 
  4.  
  5. mton stands for, literally, ctrl-M TO Newline.
  6.  
  7. This program scans standard input for Macintosh end of line characters
  8. (^M/ASCII 13/CR), and replaces it with the UNIX newline character 
  9. (^J/ASCII 10/LF). If the CR is followed by a LF, then the program only
  10. strips the CR, so as not to have to LFs in the final output.
  11.  
  12. The program writes its output to standard output.
  13.  
  14. USAGE: Simply enter the NeXT Shell or terminal, and enter the following
  15. command.
  16.  
  17. mton <file1 >file2
  18.  
  19. where file1 is the unconverted file, and file2 is the file that mton 
  20. will create. If file2 already exists, it will be overwritten.
  21.  
  22. One way I like to run this program is to place all the Mac Files into
  23. one directory (say, /LocalLibrary/Mac), and convert them all at once.
  24. mton doesn't recognize wildcards, but here's a simple way around that.
  25. Create the directories /LocalLibrary/Mac and /LocalLibrary/NeXT.
  26.  
  27. Place all the mac files to be converted in /LocalLibrary/Mac.
  28. Make sure that you're in the Bourne Shell (/bin/sh).
  29. Change your working directory to /LocalLibrary.
  30. Enter the following command.
  31.  
  32. #for i in `ls ./Mac`; do mton <./Mac/$i >./NeXT/$i &; done
  33.  
  34. Depending on the number of files in the Mac directory, this line could
  35. conceivably slow your machine to a crawl. The good news is that it
  36. shouldn't take too long. When it finishes, you should have a whole
  37. directory full of converted files. It's like magic!
  38.  
  39. mton was written by David M. Herbert, Computer Science senior at
  40. the University of Maryland, College Park. David has absolutely no
  41. interest in the NeXT computer, but loves UNIX. I told him that I'd
  42. make it worth his time, so I'm asking anyone who uses this software
  43. to send him a small donation, say $5, or whatever you feel is 
  44. worth it. 
  45.  
  46. The way I look at is this: It would cost you quite a lot of money
  47. to buy all those fonts from Adobe all over again!
  48.  
  49. Anyway, here's David's address:
  50. David M. Herbert
  51. 12307 Starlight Lane
  52. Bowie, MD 20715
  53.  
  54. Again, I hope you find this program as useful as I have.
  55.  
  56. Michael D. Callaghan 
  57.  
  58. (MikeC)
  59.  
  60.