home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / os / linux / 16853 < prev    next >
Encoding:
Internet Message Format  |  1992-11-16  |  1012 b 

  1. Path: sparky!uunet!ukma!wupost!crcnis1.unl.edu!moe.ksu.ksu.edu!matt.ksu.ksu.edu!news
  2. From: probreak@matt.ksu.ksu.edu (James Michael Chacon)
  3. Newsgroups: comp.os.linux
  4. Subject: Re: cat 'binary' mayhem
  5. Date: 16 Nov 1992 11:46:25 -0600
  6. Organization: Kansas State University
  7. Lines: 21
  8. Message-ID: <1e8mphINNcqf@matt.ksu.ksu.edu>
  9. References: <1992Nov16.135707.4715@athena.mit.edu>
  10. NNTP-Posting-Host: matt.ksu.ksu.edu
  11.  
  12. J.R.B.Jagger@sheffield-hallam.ac.uk writes:
  13.  
  14. >I'm using HJs setup on my machine, and I noticed that if you try to
  15. >cat a binary file, then you lose the keyboard mappings, and all
  16. >the keys seem remapped to non alphanumeric characters. Has anyone
  17. >lese noticed this?
  18. >Also ps does not work. Any help please?
  19.  
  20. To fix the problem where your screen has got the high bit set on all
  21. the characters, install this script:
  22.  
  23. #!/bin/sh
  24. echo ^O^[[r
  25. clear
  26.  
  27.  
  28. The ^O and ^[ are control O and escape accordingly. I just install this
  29. as /usr/bin/fix and run in anytime I accidently cat a binary or something.
  30.  
  31. James
  32.  
  33.