Show Dialogを呼び出すさまざまな方法 - BASH/ZSH/AppleScript

Show Dialogを呼び出すさまざまな方法 - BASH/ZSH/AppleScript

display dialogBASHスクリプトと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つのバリエーションのいずれかが好ましいか、それとも長所/短所がありますか?

ベストアンサー1

おすすめ記事