home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.os.ms-windows.programmer.win32
- Path: sparky!uunet!stanford.edu!leland.Stanford.EDU!leland!stergios
- From: stergios@leland.Stanford.EDU (Stergios)
- Subject: Re: *.pst files
- In-Reply-To: woo@ra-next.arc.nasa.gov's message of 20 Aug 92 19:11:44 GMT
- Message-ID: <STERGIOS.92Aug21210937@kt22.Stanford.EDU>
- Sender: news@leland.Stanford.EDU (Mr News)
- Reply-To: stergios@kt22.Stanford.EDU
- Organization: DSG, Stanford University
- References: <1992Aug20.191144.21419@riacs.edu>
- Date: 21 Aug 92 21:09:37
- Lines: 29
-
-
-
- (Alex Woo x6010 227-6 rm 315) writes:
-
- I recently received the Win32 SDK CD-ROM with the intent of reading
- the documentation. However, the files that I want to read
- are in the win32ovr and win32api documentation directories
- and they have the suffix "pst". I have been unable to
- preview or print this "postscript" file. How do you look at it?
- (I called Microsoft but was put on infinite hold.)
-
-
- Here's the perl script I use to filter out the ^D & ^M when printing
- through a unix host. Name the file "cdps" and run it as
-
- cat file_name | cdps | lpr -Ppostscript_printer
-
-
- #!/usr/local/bin/perl
-
- while (<STDIN>) {
- s/\004//g ;
- s/\015//g ;
- print ;
- }
- --
- --------------------------
- Stergios Marinopoulos
- stergios@kt22.Stanford.EDU
-