repo.or.cz
/
bush.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
improve of cmpl.
[bush.git]
/
testing
/
3.OriginalTest.dir
/
tmp
/
misc
/
read-nchars.tests
blob
40b1f982a5b0fa51151f4d0d6a0bc270e71a35a7
1
# interactive
2
3
# from tty
4
read -n 3 -p 'enter three chars: ' xyz
5
echo
6
echo $xyz
7
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