Sponsored Content
Top Forums Shell Programming and Scripting problem using arrow keys in bash shell Post 302334904 by TonyFullerMalv on Thursday 16th of July 2009 07:57:26 PM
Old 07-16-2009
The "stty erase ^H" when entered correctly causes the backspace to do backspaces instead of the del key, this does not affect the behavior of the left arrow key.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trapping Arrow keys

Hey Guys , How do we trap the arrow keys in shell programming. Or atleast can we read the ascii code of the arrow keys. I want to read the arrow keys pressed by the user and accordingly highlight the corresponding menu option. Is it possible in shell to do so ?? ... (1 Reply)
Discussion started by: nageshrc
1 Replies

2. UNIX for Dummies Questions & Answers

arrow keys / special keys

how to use the arrow keys in shell scripting. is there any special synatax / command for this. i just want to use the arrow keys for navigation. replies appreciated raguram R (3 Replies)
Discussion started by: raguramtgr
3 Replies

3. Shell Programming and Scripting

How to read arrow keys on really old bash?

I would like to get a script to respond to arrow key presses to scroll up and down a menu. The platform is CDLinux which uses a prehistoric version of bash, version 1.14.7. I would like to do something like "read -sn 1 keyin" but the "read" command is so primative that it only has the -r... (1 Reply)
Discussion started by: simonb
1 Replies

4. Solaris

Using arrow keys

Hello, I am unable to use the arrow keys in some applications. For example, in bash, I am able to use the arrow keys to to go back and forth characters in current line and search the history--I can do everything you'd expect to be able to do with the arrow keys. However, in bc, I cannot use... (4 Replies)
Discussion started by: cooldude
4 Replies

5. UNIX and Linux Applications

command scrolling using arrow keys

hi, can anyone tell me how to enable arrow keys to scroll thru the commands on command prompt. I am using C shell ( I know, in k shell, set -o vi would enable vi command history, but set -o doesnte exist in c shell) (4 Replies)
Discussion started by: hemangi13
4 Replies

6. UNIX for Dummies Questions & Answers

SunOS 5.10 - VI Arrow keys not working

Hi I am working on SunOS 5.10 from remote terminal using putty. Also echo $TERM xterm In vi editor when in insert mode arrow keys are not working for cursor movement instead they print A B C and D. Please help. thanks ravs (7 Replies)
Discussion started by: ravashingravi
7 Replies

7. Shell Programming and Scripting

Using arrow keys in shell scripts

I recently needed to collect arrow keys (and function keys etc.) in a shell script so that I could run a text graphics-style data entry system (with text entry fields, drop-down list boxes, progress bars and the like). Yes you can do all this in shell, and portably too if you're careful. I've... (4 Replies)
Discussion started by: cambridge
4 Replies

8. UNIX for Advanced & Expert Users

SSH closes connection when using arrow keys

Hi, I'm having a problem with my ssh link to various Sun servers running Solaris 9 and 10 from an Windows XP box running Cygwin/X. I am using ssh to connect to a number of different Sun servers. My problem is that when editing a remote shell command line with the arrow direction keys the... (0 Replies)
Discussion started by: stv_t
0 Replies

9. UNIX for Dummies Questions & Answers

Tux-HJKL as arrow keys

I would like to configure the key combination Tux-J (Win-J) as Down Arrow, and the rest of the VIM-style movement keys as well (HKL). What is the best way to do this so that it will work in all applications? I thought about editing the keyboard layout but I'm not sure how to do that for Tux-key... (2 Replies)
Discussion started by: dotancohen
2 Replies

10. UNIX for Dummies Questions & Answers

Arrow keys binding in AIX v5.3 - how?

Would somebody advise how arrow keys could be binded in AIX v5.3? I could not find reasonable information online related to AIX. I've meat advises to define: alias __A=$'\020' # or the same: alias __A=$(echo "\020") alias __B=$'\016' alias __C=$'\006' alias __D=$'\002' But it does... (2 Replies)
Discussion started by: alex_5161
2 Replies
getch(3XCURSES) 					  X/Open Curses Library Functions					   getch(3XCURSES)

NAME
getch, wgetch, mvgetch, mvwgetch - get a single-byte character from the terminal SYNOPSIS
cc [ flag... ] file... -I /usr/xpg4/include -L /usr/xpg4/lib -R /usr/xpg4/lib -lcurses [ library... ] c89 [ flag... ] file... -lcurses [ library... ] #include <curses.h> int getch(void); int wgetch(WINDOW *win); int mvgetch(int y, int x); int mvwgetch(WINDOW *win, int y, int x); PARAMETERS
win Is a pointer to the window associated with the terminal from which the character is to be read. y Is the y (row) coordinate for the position of the character to be read. x Is the x (column) coordinate for the position of the character to be read. DESCRIPTION
These functions read a single-byte character from the terminal associated with the current or specified window. The results are unspecified if the input is not a single-byte character. If keypad(3XCURSES) is enabled, these functions respond to the pressing of a function key by returning the corresponding KEY_ value defined in <curses.h> Processing of terminal input is subject to the general rules described on the keypad(3XCURSES) manual page. If echoing is enabled, then the character is echoed as though it were provided as an input argument to addch(3XCURSES), except for the fol- lowing characters: <backspace> The input is interpreted as follows: unless the cursor already was in column 0, <backspace> moves the cursor one column toward the start of the current line and any characters after the <backspace> are added or inserted starting there. The character at the resulting cursor position it then deleted as though delch(3XCURSES) were called, except that if the cursor was originally in the first column of the line, the user is alerted as though beep(3XCURSES) were called. Function keys The user is alerted as though beep() were called. Information concerning the function keys is not returned to the caller. If the current or specified window is not a pad, and it has been moved modified since the last refresh operation, then it will be refreshed before another character is read. Constant Values for Function Keys The following is a list of tokens for function keys that are returned by the getch() set of functions if keypad handling is enabled (some terminals may not support all tokens). +-----------------------------------------------------------+ |Constant Description | |KEY_BREAK Break key | |KEY_DOWN The down arrow key | |KEY_UP The up arrow key | |KEY_LEFT The left arrow key | |KEY_RIGHT The right arrow key | |KEY_HOME Home key | |KEY_BACKSPACE Backspace | |KEY_F0 Function keys. Space for 64 keys is | | reserved. | |KEY_F(n) For 0 <= n <= 63 | |KEY_DL Delete line | |KEY_IL Insert line | |KEY_DC Delete character | |KEY_IC Insert char or enter insert mode | |KEY_EIC Exit insert char mode | |KEY_CLEAR Clear screen | |KEY_EOS Clear to end of screen | |KEY_EOL Clear to end of line | |KEY_SF Scroll 1 line forward | | KEY_SR Scroll 1 line backwards | |KEY_NPAGE Next page | |KEY_PPAGE Previous page | |KEY_STAB Set tab | |KEY_CTAB Clear tab | |KEY_CATAB Clear all tabs | |KEY_ENTER Enter or send | |KEY_SRESET Soft (partial) reset | |KEY_RESET Reset or hard reset | |KEY_PRINT Print or copy | |KEY_LL Home down or bottom (lower left) | |KEY_A1 Upper left of keypad | |KEY_A3 Upper right of keypad | |KEY_B2 Center of keypad | |KEY_C1 Lower left of keypad | |KEY_C3 Lower right of | |keypad | |KEY_BTAB Back tab | |KEY_BEG Beginning key | |KEY_CANCEL Cancel key | |KEY_CLOSE Close key | |KEY_COMMAND Cmd (command) key | |KEY_COPY Copy key | |KEY_CREATE Create key | |KEY_END End key | |KEY_EXIT Exit key | |KEY_FIND Find key | |KEY_HELP Help key | |KEY_MARK Mark key | |KEY_MESSAGE Message key | |KEY_MOVE Move key | |KEY_NEXT Next object key | |KEY_OPEN Open key | |KEY_OPTIONS Options key | |KEY_PREVIOUS Previous object key | |KEY_REDO Redo key | |KEY_REFERENCE Reference key | |KEY_REFRESH Refresh key | |KEY_REPLACE Replace key | |KEY_RESTART Restart key | |KEY_RESUME Resume key | |KEY_SAVE Save key | |KEY_SBEG Shifted beginning key | |KEY_SCANCEL Shifted cancel key | |KEY_SCOMMAND Shifted command key | |KEY_SCOPY Shifted copy key | |KEY_SCREATE Shifted create key | |KEY_SDC Shifted delete char key | |KEY_SDL Shifted delete line key | |KEY_SELECT Select key | |KEY_SEND Shifted end key | |KEY_SEOL Shifted clear line key | |KEY_SEXIT Shifted exit key | |KEY_SFIND Shifted find key | |KEY_SHELP Shifted help key | |KEY_SHOME Shifted home key | |KEY_SIC Shifted input key | |KEY_SLEFT Shifted left arrow key | |KEY_SMESSAGES Shifted messages key | |KEY_SMOVE Shifted move key | |KEY_SNEXT Shifted next key | |KEY_SOPTIONS Shifted options key | |KEY_SPREVIOUS Shifted previous key | |KEY_SPRINT Shifted print key | |KEY_SREDO Shifted redo key | |KEY_SREPLACE Shifted replace key | |KEY_SRIGHT Shifted right arrow key | |KEY_SRSUME Shifted resume key | |KEY_SSAVE Shifted save key | |KEY_SSUSPEND Shifted suspend key | |KEY_SUNDO Shifted undo key | |KEY_SUSPEND Suspend key | |KEY_UNDO Undo key | +-----------------------------------------------------------+ RETURN VALUES
Upon successful completion, these functions return the single-byte character, KEY_ value, or ERR. When in the nodelay mode and no data is available, ERR is returned. ERRORS
No errors are defined. USAGE Applications should not define the escape key by itself as a single-character function. When using these functions, nocbreak mode (cbreak(3XCURSES)) and echo mode (echo(3XCURSES)) should not be used at the same time. Depending on the state of the terminal when each character is typed, the application may produce undesirable results. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |Unsafe | +-----------------------------+-----------------------------+ SEE ALSO
cbreak(3XCURSES), echo(3XCURSES), halfdelay(3XCURSES), keypad(3XCURSES), libcurses(3XCURSES), nodelay(3XCURSES), notimeout(3XCURSES), raw(3XCURSES), timeout(3XCURSES), attributes(5), standards(5) SunOS 5.10 5 Jun 2002 getch(3XCURSES)
All times are GMT -4. The time now is 09:23 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy