我注意到我使用两种不同的方式来调用display dialog
BASH 和 ZSH 脚本。
osascript -e 'set dialogText to text returned of ¬
(display dialog ¬
"Insert Text" ¬
with title "Title" ¬
default answer "")'
osascript -e 'tell app "System Events" to display dialog ¬
"Insert Text" ¬
with title "Title" ¬
default answer ""' \
-e 'text returned of result'
这两种变体中的一种通常是首选还是有优点/缺点?