Last active
February 26, 2018 23:30
-
-
Save blockloop/b54af96c7d4a98bf09877cac38ace783 to your computer and use it in GitHub Desktop.
Open Typora.app from command line in OSX/macOS
This file contains 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
#!/bin/bash | |
set -e | |
if [ -n "$1" ]; then | |
FILE="$(greadlink -f "$1")" | |
[ -f "$FILE" ] || [ -d "$FILE" ] || touch "$FILE" | |
osascript -e "tell application \"Typora\" to open \"$FILE\"" | |
fi | |
osascript -e 'tell application "Typora" to activate' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment