简体   繁体   中英

How to read just a single character in shell script

I want similar option like getche() in C. How can I read just a single character input from command line?

Using read command can we do it?

在 bash 中, read可以做到:

read -n1 ans

read -n1 works for bash

The stty raw mode prevents ctrl-c from working and can get you stuck in an input loop with no way out. Also the man page says stty -raw is not guaranteed to return your terminal to the same state.

So, building on dtmilano's answer using stty -icanon -echo avoids those issues.

#/bin/ksh
## /bin/{ksh,sh,zsh,...}

# read_char var
read_char() {
  stty -icanon -echo
  eval "$1=\$(dd bs=1 count=1 2>/dev/null)"
  stty icanon echo
}

read_char char
echo "got $char"

In ksh you can basically do:

stty raw
REPLY=$(dd bs=1 count=1 2> /dev/null)
stty -raw
read -n1

reads exactly one character from input

echo "$REPLY"

prints the result on the screen

doc: https://www.computerhope.com/unix/bash/read.htm

Some people mean with "input from command line" an argument given to the command instead reading from STDIN... so please don't shoot me. But i have a (maybe not most sophisticated) solution for STDIN, too!

When using bash and having the data in a variable you can use parameter expansion

${parameter:offset:length}

and of course you can perform that on given args ( $1 , $2 , $3 , etc.)

Script

#!/usr/bin/env bash

testdata1="1234"
testdata2="abcd"

echo ${testdata1:0:1}
echo ${testdata2:0:1}
echo ${1:0:1} # argument #1 from command line

Execution

$ ./test.sh foo
1
a
f

reading from STDIN

Script

#!/usr/bin/env bash

echo please type in your message:
read message
echo 1st char: ${message:0:1}

Execution

$ ./test.sh 
please type in your message:
Foo
1st char: F

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM