Skip to content

How to run manuskript globally, from anywhere

Olivier edited this page Oct 17, 2017 · 1 revision

You can add the bin/manuskript directory to the PATH variable. That way you can type manuskript while in any directory to invoke manuskript.

To make the change permanent, edit your ~/.profile file and add the following lines:

# Extend path with manuskript
if [ -d "$HOME//manuskript/bin" ] ; then
    PATH="$HOME//manuskript/bin:$PATH"
fi

In the above example manuskript is located in my home folder. Be sure to replace $HOME/manuskript/bin with the location of your manuskript bin directory.

(Originally asked here)

Clone this wiki locally