Aquí está mi guión básico:
#!/bin/bash
osascript -e 'tell application id "com.apple.systemevents"'
-e 'display dialog "Do you want to continue?" & return & return &
" Please wait..." buttons {"Cancel", "Okay"} default button
2 cancel button "Cancel"' -e 'end tell' -e 'if button returned is "Cancel" then'
-e '<blah blah kill this script>' -e 'end if'
-- other bash stuff here
Necesito que el script se detenga si el usuario hace clic en el botón "Cancelar". Tal como está ahora, el script espera hasta que el usuario haga clic en cualquiera de los botones y luego ejecute el código de bash. ¿Cómo puedo matar el script?
Esto para poder ejecutarse en Mac OS 10.6 a 10.10, sin complementos de terceros.