display dialog
BASHスクリプトとZSHスクリプトを呼び出すために2つの異なる方法を使用していることがわかりました。
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'
一般に、これら2つのバリエーションのいずれかが好ましいか、それとも長所/短所がありますか?