Applescriptで記述したアプリを、シェルから起動して実行しています。
正しくアプリが動作したのか、エラーが起きたのか、戻り値を返したいのですが
どうすればいいでしょうか。

#!/bin/sh

Open /Users/user/hoge.app
exit 

hoge.app

tell application "System Preferences"
activate
set current pane to pane "com.apple.Network-Link-Conditioner"
end tell

tell application "System Events"
tell process "System Preferences"
    tell window "Network Link Conditioner"
        click button "ON"
        tell group 1
            click pop up button 1

            click menu item "3G" of menu 1 of pop up button 1
        end tell
    end tell
end tell
end tell