Install Command Line Utility is not shown in the Marked Menu
I'm trying to install the Command Line Utility but is not shown in the Marked Menu as described in the help site. Is there any thing else I need to do to be able to install it?
Comments are currently closed for this discussion. You can start a new one.
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by Brett on 13 Nov, 2012 12:32 PM
The command line utility had to be removed due to Apple restrictions. It will be available for download eventually. The only thing it was capable of at the time of removal was opening a Marked file, and you can get the same result by using "open -a Marked.app /path/to/file".
2 Posted by Mike DeVita on 18 Feb, 2013 08:14 PM
you can just create a function in your .profile in your home directory with the following...
This will accept typing
marked
into the CLI to open marked.. ormarked <appname>
..i.e. marked ~/sites/README.md
i.e. marked
function marked(){
if [ $1 ] then open -a marked.app $1 else open -a marked.app fi }
Brett closed this discussion on 10 Mar, 2013 02:18 AM.