updatedb --prunepaths='/proc /cygdrive/[^/]*'
locate 'filename'
updatedb --prunepaths='/proc /cygdrive/[^/]*'
locate 'filename'
export VAR1="Hello"
export VAR2="World"
# WRONG: Interpreted as $VAR1_
echo "Create a file called $VAR1_$VAR2.log"
# CORRECT: Use quotes or brackets
echo "Create a file called ${VAR1}_${VAR2}.log"
echo "Create a file called "$VAR1"_"$VAR2".log"