How to run manuskript globally, from anywhere - olivierkes/manuskript GitHub Wiki
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)