Last active
September 29, 2018 22:48
-
-
Save drunkensouljah/353c200fac9b0bf556fc67d842afe59a to your computer and use it in GitHub Desktop.
[Open in marked 2] Open file in marked 2 #shell
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
| #!/bin/sh | |
| if [ "$1" ]; then | |
| open -a "Marked" "$1"; | |
| else | |
| open -a "Marked"; | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment