Show Dialog를 호출하는 다양한 방법 - BASH/ZSH/AppleScript

Show Dialog를 호출하는 다양한 방법 - BASH/ZSH/AppleScript

display dialogBASH 및 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'

일반적으로 이 두 변형 중 하나가 선호됩니까, 아니면 장점/단점이 있습니까?

관련 정보