2008年7月29日 星期二

linux response script 回應手搞作法

有的時候碰到想自動安裝script時,可以利用"<<keyword" 假設有個問答手搞script01.sh
[root@test ~]#vi script01.sh
#!/bin/bash
#交談手搞
read -p "Input A file" A
read -p "Input B file" B
echo -e "\nYour File Name is: $A and $B"

想要自動回答時
[root@test ~]#vi script01-autoresponse.sh
#!/bin/bash
/script01.sh<<keyword
fish
ocean
keyword
結果
[root@test ~]#Your File Name is: fish and ocean
輸入空白可回答預設選項~



參考來源:
http://forum.icst.org.tw/phpBB2/viewtopic.php?p=36718&sid=ffc492f93242082a17b6f58a7f9ef3f7