13 lines
257 B
Bash
13 lines
257 B
Bash
#!/bin/sh
|
|
|
|
if [[ -z "${TEXMFHOME+x}" ]]; then
|
|
export TEXMFHOME=~/texmf/
|
|
fi
|
|
|
|
echo "Removing helper files"
|
|
rm -rf $TEXMFHOME/tex/latex/janishutz-helpers
|
|
sudo rm -rf /usr/share/texmf/tex/latex/janishutz-helpers/
|
|
|
|
echo "Updating file database"
|
|
sudo texhash
|