13 lines
169 B
Bash
Executable File
13 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export ROOT=`pwd`
|
|
|
|
export TEXINPUTS=".:${ROOT}/tools/style//::"
|
|
|
|
# activate virtual env
|
|
source ~/.venv/enseignements/bin/activate
|
|
|
|
goroot(){
|
|
cd $ROOT
|
|
}
|