12 lines
207 B
Bash
12 lines
207 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
clear
|
||
|
|
||
|
export BASE="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||
|
export NU_CONFIG_DIR=${BASE}/nushell/config
|
||
|
export PATH=${BASE}/bin:${BASE}/v:${PATH}
|
||
|
|
||
|
|
||
|
cd ${BASE}
|
||
|
bash
|