improve of cmpl.
[bush.git] / tests / misc / read-nchars.tests
blob40b1f982a5b0fa51151f4d0d6a0bc270e71a35a7
1 # interactive
3 # from tty
4 read -n 3 -p 'enter three chars: ' xyz
5 echo
6 echo $xyz
8 # using readline
9 read -p 'enter 3 chars: ' -e -n 3 abc
10 # readline outputs a newline for us, so we don't need the extra echo
11 echo $abc