home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / pocketbk / developmen / x_psion / psion.progs / support / pstounix < prev    next >
Text File  |  1993-02-25  |  246b  |  8 lines

  1. #!/bin/csh -f
  2. # this program takes its $o, moves it to $0.tmp, and then runs
  3. # dos2unix to get a unix file. it then removes the tmp file
  4. # it is intended to be called as part of the gettxt.pscmd programs
  5. mv $1 $1.tmp
  6. dos2unix $1.tmp $1
  7. rm $1.tmp
  8.