Mar 4, 2003 #1 jay78 IS-IT--Management Joined Mar 4, 2003 Messages 1 Location US How can I enter extended ASCII characters(127-255) in a file using the VI editor? Thanks!
Mar 5, 2003 #2 dickiebird Programmer Joined Feb 14, 2002 Messages 758 Location GB I use cut and paste when using a telnet session via Wind-Ohs Not sure there's any other way !? Dickie Bird (-))) Upvote 0 Downvote
I use cut and paste when using a telnet session via Wind-Ohs Not sure there's any other way !? Dickie Bird (-)))
Mar 5, 2003 #3 J1mbo Programmer Joined Dec 12, 2002 Messages 93 Location US Here is one way: echo "\0247" > /tmp/test vi file [ position the cursor where you want the ASCII character] :r /tmp/test This will read in the contents of the file, which has the ASCII character. -jim Upvote 0 Downvote
Here is one way: echo "\0247" > /tmp/test vi file [ position the cursor where you want the ASCII character] :r /tmp/test This will read in the contents of the file, which has the ASCII character. -jim