Skip to content

Instantly share code, notes, and snippets.

@rlridenour
Created August 9, 2017 12:29
Show Gist options
  • Save rlridenour/ac2031d50eab51d4877f0ef9decf3b96 to your computer and use it in GitHub Desktop.
Save rlridenour/ac2031d50eab51d4877f0ef9decf3b96 to your computer and use it in GitHub Desktop.
Open files in Marked 2
#!/bin/sh
if [ $1 ]; then
open -a "Marked 2" $1;
else
open -a "Marked 2";
fi
@rlridenour
Copy link
Author

rlridenour commented Aug 9, 2017

Place in path and make executable with "chmod +x mark"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment