Spaces:
Sleeping
Sleeping
File size: 750 Bytes
50f034f 4a2dc41 50f034f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
export PATH_TO_DATA=~/data
if [[ $(hostname) == "oon17" ]]; then
export PATH_TO_DATA=/data/
fi
if [[ $(hostname) == "oon19" ]]; then
export PATH_TO_DATA=/home/prem/shared/data/
fi
if [[ $(hostname) == "lucas-ssound-trt-vm" ]]; then
export PATH_TO_DATA=~/data
fi
if [[ $(hostname) == "a100-ssound" ]]; then
export PATH_TO_DATA=~/data
fi
if [[ $(hostname) == "oon25" ]]; then
export PATH_TO_DATA=/data
fi
if [[ $(hostname) == "macbook-pro-2.lan" ]]; then
export PATH_TO_DATA=~/data
fi
if [[ $(hostname) == "oon11" ]]; then
export PATH_TO_DATA=/data2/syncthing_lucas/data
fi
if [[ $(hostname) == "oon12" ]]; then
export PATH_TO_DATA=/data
fi
if [[ $(hostname) == "oon26" ]]; then
export PATH_TO_DATA=/data
fi
|