BASH Shell script - help with read


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting BASH Shell script - help with read
# 8  
Old 08-06-2009
The following will process the back arrow keys by removing the codes for these keys plus removing the previous character (since the codes are indicating this character should be deleted):

Code:
#!/bin/sh
read -rp "Command to execute: " the_command
while [ "`expr $the_command : '.*\(\[\).*'`" != "" ]
do
        echo "looping" >&2
        the_command=`echo $the_command | sed 's/.^[\[D//'`
done
echo "*$the_command*"
eval "$the_command"

The combination ^[ shown should actually be entered as an escape character. Notice we need a while loop - the /g switch will not work (at least not that I can see).

The problem with this is that it is specific to back arrow keys. If the person presses some other keys and tries to erase them with back arrow, this code may fail. The general problem of line editing can be messy.

Another approach would be to present the user with numbered menu items and check which menu item was selected. This would prevent mistyping the name of a program. The menu could be static or could even be generated dynamically by the shell script.
# 9  
Old 08-06-2009
tested cygwin ksh
Code:
while true
do
        echo -n "filename:"
        read  -r str
        # remove cursor keys
        some=${str//$'\x1b'[D/}
        some=${some//$'\x1b'[A/}
        some=${some//$'\x1b'[C/}
        some=${some//$'\x1b'[B/}
        [ "$str" != "$some" ] && echo "don't use array keys, only backspace" && continue
        break
done
#now str is okay
echo "$str"

Why read again ? = Wysewyg is not correct if data include cursor keys = not same what user has tried.

This enough in cygwin, but in generic version you need to read cursorkeys value using tput and remove those values.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed

In Bash shell - the ps -ef shows only the /bin/bash but the script name is not displayed ? Is there any way to get the script names for the process command ? --- Post updated at 08:39 AM --- in KSH (Korn Shell), my command output shows the script names but when run in the Bash Shell... (3 Replies)
Discussion started by: i4ismail
3 Replies

2. Shell Programming and Scripting

Different behavior between bash shell and bash script for cmd

So I'm trying to pass certain json elements as env vars and use them later on in a script. Sample json: JSON='{ "Element1": "file-123456", "Element2": "Name, of, company written in, a very weird way", "Element3": "path/to/some/file.txt", }' (part of the) script: for s... (5 Replies)
Discussion started by: da1
5 Replies

3. UNIX for Dummies Questions & Answers

Read Bash Script

I am very new to all these programming languages and really love Linux but have only begun to dive into bash scripting... I am curious what's going on with this script... #!/bin/bash if ; then # xen grep control_d /proc/xen/capabilities >& /dev/null if ; then # domU -- do not run on... (2 Replies)
Discussion started by: BrianBlaze
2 Replies

4. Shell Programming and Scripting

Help with grep and read function in a BASH Script

I'm putting together a script that will search my mail archives for emails that meet certain criteria and output the files to a text file. I can manually cat that text file and pipe it into sendmail and it will work (i.e. cat /pathtofile/foo.txt | sendmail -t me@company.com) My script sends... (7 Replies)
Discussion started by: binary-ninja
7 Replies

5. Shell Programming and Scripting

Bash script to read file location

I'm writing a bash script that reads a file location from a user, and I'm wondering how to get the script to accept tab to auto complete the directories that are input. (8 Replies)
Discussion started by: Prodiga1
8 Replies

6. Shell Programming and Scripting

read -n1 -r -p "Press..." key / produces error in bash shell script

Hello! Sorry, for my not so perfect english! I want to stop bash shell script execution until any key is pressed. This line in a bash shell script read -n1 -r -p "Press any key to continue..." key produces this error When I run this from the command line usera@lynx:~$ read... (4 Replies)
Discussion started by: linuxinho
4 Replies

7. UNIX for Dummies Questions & Answers

Cygwin bash script and read command

Hello everyone, I am struggling a bit with a batch script that I need to run in cygwin. I work in winXP and I had to write some awk scripts to do some file manipulation, and now I would like to automate the process by just running a batch file so that my colleagues can use it easily. Now, the... (2 Replies)
Discussion started by: Teroc
2 Replies

8. Shell Programming and Scripting

Bash Script to Read & Write on different directories

Hi, root@server] df -h 121G 14G 101G 12% /home 147G 126G 14G 91% /backup We having our site files and images are storing in /backup/home/user/files/ through symbolic link created in /home directory pointing in /backup directory as following. root@server] cd /home... (1 Reply)
Discussion started by: mirfan
1 Replies

9. Shell Programming and Scripting

How to use while loop in bash shell to read a file with 4 lines of gap

Hi , I am currently using the while loop in bash shell, as follows. while read line do echo $line done < file.txt However, i want to use the while loop on file.txt, which will read the file with 4 lines of gap. Ex- if file.txt is a file of 100 lines, then i want to use the loop such... (3 Replies)
Discussion started by: jitendriya.dash
3 Replies

10. UNIX for Dummies Questions & Answers

how to read double consecutive space in filename for bash shell

Hello, Im using cygwin app which we use the bash shell for scripting. Im trying to read a filename with consecutive spaces on the filename ex: filename<space><space>1.txt ls -lrt filename<space><space>1.txt is working but when I pull that from a file and place it into variable. it reads... (1 Reply)
Discussion started by: james_falco
1 Replies
Login or Register to Ask a Question