12 lines
197 B
Bash
Executable File
12 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
clear
|
|
|
|
export BASE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
export PATH=${BASE}/bin:${BASE}/v:${PATH}
|
|
|
|
export VMODULES=${BASE}/.vmodules
|
|
|
|
cd ${BASE}
|
|
bash |