Gitiles
Code Review
Sign In
review.blissroms.org
/
platform_external_bash
/
refs/heads/n2
/
.
/
tests
/
misc
/
read-nchars.tests
blob: 40b1f982a5b0fa51151f4d0d6a0bc270e71a35a7 [
file
] [
log
] [
blame
]
# interactive
# from tty
read
-
n
3
-
p
'enter three chars: '
xyz
echo
echo $xyz
# using readline
read
-
p
'enter 3 chars: '
-
e
-
n
3
abc
# readline outputs a newline for us, so we don't need the extra echo
echo $abc