~tom-gall/linaro/busybox

« back to all changes in this revision

Viewing changes to shell/hush_test/hush-read/read_n.tests

  • Committer: Tom Gall
  • Date: 2011-03-01 21:57:28 UTC
  • Revision ID: tom.gall@linaro.org-20110301215728-1anly2d6ewgcwwnl
initial import based on busybox 1.18.3 release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
echo 'test' | (read reply; echo "$reply")
 
2
echo 'test' | (read -n 3 reply; echo "$reply")
 
3
echo 'test' | (read -n3 reply; echo "$reply")