I am creating a Bash script which reads some other environment variables:
echo "Exporting configuration variables..."
while IFS="=" read -r k v; do
key=$k
value=$v
if [[ ${#key} > 0 && ${#value} > 0 ]]; then
export $key=$value
fi
done < $HOME/myfile
and have the variable:
$a=$b/c/d/e
and want to call $a as in:
cp myOtherFile $a
The result for the destination folder for the copy is "$b/c/d/e", and an error is shown:
"$b/c/d/e" : No such file or directory
because it is interpreted literally as a folder path.
Can this path be reinterpreted before being used in the cp command?


eval, but the standard solution also comes with the caveat that usingevalopens up all kinds of security implications and code maintainability hassles. If you can, rethink your solution so it doesn't requireeval. See e.g. stackoverflow.com/questions/6818948/… for a discussion. – tripleee Oct 1 '12 at 15:18