Created
December 13, 2018 22:05
-
-
Save napcs/8e640df0e8abfe047e6b8c048a14470e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
notifyMe() { | |
if [ $? -eq 0 ]; then | |
osascript -e 'display notification "The command worked" with title "Success"' | |
else | |
osascript -e 'display notification "The command failed" with title "Failed"' | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment