Sponsored Content
Top Forums Shell Programming and Scripting Bash KeyPress (or Read Single Character) Post 302437177 by Ste_Moore01 on Wednesday 14th of July 2010 08:31:50 AM
Old 07-14-2010
Thanks Funksen, raw works for me too!

---------- Post updated at 01:31 PM ---------- Previous update was at 12:54 PM ----------

Sorry to bother you again.

When I tried this previously, I just had a standard read command.
So I would press the key and then press return and the command would be fired.

Now that have the below code instead, I can't seem to capture the keypresses correctly
Code:
	stty raw
	sel=`dd if=/dev/tty bs=1 count=1 2>/dev/null`
	stty -raw

I used to have
Code:
read sel

case $sel in
		1)  KEY=1 ; NUM=$sel
	;;
		2)  KEY=2 ; NUM=$sel
	;;
		3)  KEY=3 ; NUM=$sel
	;;
		4)  KEY=4 ; NUM=$sel
	;;
		5)  KEY=5 ; NUM=$sel
	;;
		6)  KEY="" ; QUIT="Y" 
	;;
		["Q","q"]) KEY="" ; QUIT="Y" 
	;;
		$'\e[A' ) 
		if [ $NUM -eq 1 ]
		then
			NUM=6
		else
			NUM=$(($NUM - 1)) 
		fi
	;;
		$'\e[B' ) 
		if [ $NUM -eq 6 ]
		then
			NUM=1
		else
			NUM=$(($NUM + 1)) 
		fi
	;;
		"") KEY=$NUM 
	;;
		*) echo "ERROR"
	;;
	esac

This would determine whether the user was pressing up and down, q, a number or just pressing enter.

Now when I use the same code it isn't recognising the up, down or enter keypresses.

Have you any idea what I should change to get it to work.

Just to clarify, my code looks like the following.
Code:
	echo -n "Choose one: " 
	stty raw
	sel=`dd if=/dev/tty bs=1 count=1 2>/dev/null`
	stty -raw
		
	case $sel in
		1)  KEY=1 ; NUM=$sel
	;;
		2)  KEY=2 ; NUM=$sel
	;;
		3)  KEY=3 ; NUM=$sel
	;;
		4)  KEY=4 ; NUM=$sel
	;;
		5)  KEY=5 ; NUM=$sel
	;;
		6)  KEY="" ; QUIT="Y" 
	;;
		["Q","q"]) KEY="" ; QUIT="Y" 
	;;
		$'\e[A' ) 
		if [ $NUM -eq 1 ]
		then
			NUM=6
		else
			NUM=$(($NUM - 1)) 
		fi
	;;
		$'\e[B' ) 
		if [ $NUM -eq 6 ]
		then
			NUM=1
		else
			NUM=$(($NUM + 1)) 
		fi
	;;
		"") KEY=$NUM 
	;;
		*) echo "ERROR"
	;;
	esac

Any suggestions would be much appreciated.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

read a variable character by character, substitute characters with something else

im having trouble doing this: i have a variable with 2 characters repeating e.g. aababbbaaaababaabbaabbba is there a way i can search the variable for a's and b's and then change a's to b's and b's to a's? im guessing its like getting the 1's compliment of the string im doing this in... (2 Replies)
Discussion started by: vipervenom25
2 Replies

2. Shell Programming and Scripting

read in a file character by character - replace any unknown ASCII characters with spa

Can someone help me to write a script / command to read in a file, character by character, replace any unknown ASCII characters with space. then write out the file to a new filename/ Thanks! (1 Reply)
Discussion started by: raghav525
1 Replies

3. Shell Programming and Scripting

Can I read a file character by character?

Hello all respected people, Can i read a file character by character without using sed,awk and perl commands. Thanks in advance. (4 Replies)
Discussion started by: murtaza
4 Replies

4. Shell Programming and Scripting

bash while read how to remove \n character

Hi, I've made a script to grep a file for i in `cat filename.txt` do strings ./binfile | grep "$i" 2>&1 > /dev/null done this works fine as long as in filename.txt i don't have any entries with spaces. But in my case i want to grep something with spaces like "lala tata" and... (3 Replies)
Discussion started by: papasj
3 Replies

5. Shell Programming and Scripting

read the text file and print the content character by character..

hello all i request you to give the solution for the following problem.. I want read the text file.and print the contents character by character..like if the text file contains google means..i want to print g go goo goog googl google like this Using unix Shell scripting... without using... (1 Reply)
Discussion started by: samupnl
1 Replies

6. Shell Programming and Scripting

Replace multiple occurances of same character with a single character.

Hi all, Greetings, I have the following scenario, The contents of main file are like : Unix|||||forum|||||||||||||||is||||||the||best so||||||be|||||on||||||||||||||||||||||||||||||||||||||||||||it And i need the output in the following form: Unix=forum=is=the=best so=be=on=it ... (3 Replies)
Discussion started by: dipanchandra
3 Replies

7. Shell Programming and Scripting

Bash loop hording keypress input

I have a bash loop that waits for a single key press, then does $something depending on what $key is pressed before refreshing the screen with updated data. The problem I have is that the script will store additional key presses and chain them together causing the screen to redraw and the script... (1 Reply)
Discussion started by: DarkPhoenix
1 Replies

8. Shell Programming and Scripting

Read character by character in line in which space is also included

Hi friend, I have one file , and i want to read that file character by character. I need this script in ksh. while using read option with -n1 am getting error. while read -n1 c read has bad option And if i am using below script, then if in a line has space like this ( Pallvi mahajan)... (10 Replies)
Discussion started by: pallvi_mahajan
10 Replies

9. UNIX for Beginners Questions & Answers

Simulate keypress in bash

Hello everybody, I am using Windows 10 and cygwin/bash. I need to write a script in bash which simulates opening of a program and then press some keys such as F5, ENTER and ALT+F4. I have written a VBScript which does the job Set WshShell = WScript.CreateObject("WScript.Shell")... (9 Replies)
Discussion started by: supernono06
9 Replies

10. Shell Programming and Scripting

How to repeat a character in a field if it's a single character?

I have a csv dataset like this : C,rs18768 G,rs13785 GA,rs1065 G,rs1801279 T,rs9274407 A,rs730012 I'm thinking of use like awk, sed to covert the dataset to this format: (if it's two character, then keep the same) CC,rs18768 GG,rs13785 GA,rs1065 GG,rs1801279 TT,rs9274407... (7 Replies)
Discussion started by: nengcheng
7 Replies
isympy(1)																 isympy(1)

NAME
isympy - interactive shell for SymPy SYNOPSIS
isympy [-c | --console] isympy [ {-h | --help} | {-v | --version} ] DESCRIPTION
isympy is a Python shell for SymPy. It is just a normal python shell (ipython shell if you have the ipython package installed) that exe- cutes the following commands so that you don't have to: >>> from __future__ import division >>> from sympy import * >>> x, y, z = symbols("xyz") >>> k, m, n = symbols("kmn", integer=True) So starting isympy is equivalent to starting python (or ipython) and executing the above commands by hand. It is intended for easy and quick experimentation with SymPy. For more complicated programs, it is recommended to write a script and import things explicitly (using the "from sympy import sin, log, Symbol, ..." idiom). OPTIONS
-c shell, --console=shell Use the specified shell (python or ipython) as console backend instead of the default one (ipython if present or python otherwise). Example: isympy -c python FILES
${HOME}/.sympy-history Saves the history of commands when using the python shell as backend. BUGS
The upstreams BTS can be found at <http://code.google.com/p/sympy/issues/list> Please report all bugs that you find in there, this will help improve the overall quality of SymPy. SEE ALSO
ipython(1), python(1) 2007-10-8 isympy(1)
All times are GMT -4. The time now is 07:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy