3
我有一個shell腳本,我希望在腳本執行時提示用戶輸入一個對話框輸入。如何提示用戶輸入shell腳本?
例如(劇本之後開始):
"Enter the files you would like to install : "
user input : spreadsheet json diffTool
where $1 = spreadsheet, $2 = json, $3 = diffTool
然後在每個用戶輸入迴路,並完成類似
for var in "[email protected]"
do
echo "input is : $var"
done
我怎麼會去我的shell腳本中這樣做呢?
預先感謝您
請參閱:'help read' – Cyrus
我會將文件名作爲命令行參數傳遞。這就是任何UNIX工具或多或少的工作原理。 – hek2mgl
請在查詢之前考慮[搜索](https://www.google.com/webhp#q=bash+prompt+for+input)。這個確切的問題,和其他人一樣,已經被問了很多次。 – dimo414