0 How to run manuskript globally, from anywhere
Olivier edited this page 2017-10-17 22:04:20 +02:00

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)