Skip to content

Instantly share code, notes, and snippets.

@blockloop
Last active February 26, 2018 23:30
Show Gist options
  • Save blockloop/b54af96c7d4a98bf09877cac38ace783 to your computer and use it in GitHub Desktop.
Save blockloop/b54af96c7d4a98bf09877cac38ace783 to your computer and use it in GitHub Desktop.
Open Typora.app from command line in OSX/macOS
#!/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