13 lines
296 B
Bash
Executable File
13 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Calculate directory relative to $HOME
|
|
IMAGES=$PWD/images
|
|
LOCAL_BIN=/usr/local/bin
|
|
|
|
pushd $LOCAL_BIN >> /dev/null
|
|
ln -vs $IMAGES/hub-jupyter/python-runtime.sh .
|
|
ln -vs $IMAGES/latex/latex-runtime.sh .
|
|
ln -vs $IMAGES/latex/latexmk .
|
|
ln -vs $IMAGES/latex/pdflatex .
|
|
popd >> /dev/null
|