这要么很简单,要么无法完成,但经过几个小时的观察,我被难住了。刚开始将 bash 用于 Apple 脚本。
show_name=${BASH_REMATCH[1]} #show_name is declared
test "$show_name" == "Smash" && {show_name="Smash (2012)"} #redeclare the value from 'Smash' to 'Smash (2012)
还尝试了一些变化,例如
test "$show_name_temp" == "Smash" && (show_name="Smash (2012)"; exit 1)
但是值 show_name 永远不会被重新声明。if 语句肯定有效,因为如果我输入 echo "hello, world" ,它就会打印出来。
不过我来自 PHP,所以缺少桌面语法。
多谢你们