Questions tagged «read»

“ read”是一个shell实用程序,用于从标准输入流或文件描述符中读取字符串。

1
将用户输入读入数组,直到用户输入特定条目
我需要创建一个bash,从用户那里获取输入并将它们插入到数组中,直到用户输入特定内容为止。例如,如果我运行脚本: enter variables: 3 4 7 8 ok 我得到这个数组: array=( 2 4 7 8 ) 要么: enter variables: 15 9 0 24 36 8 1 ok 我得到这个数组: array=( 15 9 0 24 36 8 1 ) 我怎样才能做到这一点?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.