#Bourne shell VARIABLE="something" export VARIABLE #ksh, zsh, bash export VARIABLE="something"
if [[ -d /path/one || -d /path/two ]] ; then echo "At least one of these two is a valid path" fi