有人將此腳本放在網絡上以檢查網站上的活動門票。如何修改它以啓動iTunes使用osascript播放或在this_year_count> 1時播放系統嗶聲等?我可以從這個腳本發送短信嗎?如何在shell腳本中啓動另一個動作
# !/bin/sh
#
# ABCD 2013 checking script
CURL='curl'
ABCD__SUPER_SECRET="uggcf://qrirybcre.nccyr.pbz/jjqp/"
CURL_OPTIONS='--silent'
$CURL $CURL_OPTIONS `echo -n $ABCD__SUPER_SECRET | tr '[A-Za-z]' '[N-ZA-Mn-za-m]'` | \
sed -e 's/[^A-Za-z0-9][^A-Za-z0-9]*/\
/g' | awk ' BEGIN { this_year_count = 0 }
/2013/ { this_year_occurrences[NR] }
!/2013/ { ++not_abcd_count }
END { for (line in this_year_occurrences) {
++this_year_count
}
if(this_year_count > 1)
print "Hey, you might want to consider seeing if you can order tickets."
else
print "Run this checker again when you are ready to check things again"
}'
我已經嘗試用嗶嗶聲和iTunes啓動代替打印語句。由於某些原因,它們在此腳本中不起作用。沒有任何事情發生,如果命令不在那裏。我只用嘟嘟聲和osascript命令創建了一個新腳本,它運行良好。還有其他建議嗎?有人可以複製此腳本,並在看到該腳本運行後向其添加解決方案並重新發布?謝謝。 – codiac