EarthCubeInGeo / resen-core

The core docker image used by resen.
GNU General Public License v3.0
2 stars 3 forks source link

escaping \$ in $CDF_LIB line added to .bashrc #14

Closed pmreyes2 closed 5 years ago

pmreyes2 commented 5 years ago

a '\' was missing in order to escape the $ sign so that it actually gets written in the /home/jovyan/.bashrc file

asreimer commented 5 years ago

Tested this and it works great.

valentic commented 5 years ago

This is a case where you can use single quotes (') instead of double quotes ("). There is no expandion of shell variables in strings with a single quote and therefore you do not need to escape any of the special characters.