← Back to context Comment by voidUpdate 5 days ago Not how I use it, string interpolation would be $"{job}" 1 comment voidUpdate Reply yjftsjthsd-h 5 days ago That depends on the language. In unix shell, echo $JOB and echo ${JOB} are identical, though the latter is more flexible (Allowing eg. `echo ${JOB:-unemployment}` or `echo ${JOB}SUCKS`).
yjftsjthsd-h 5 days ago That depends on the language. In unix shell, echo $JOB and echo ${JOB} are identical, though the latter is more flexible (Allowing eg. `echo ${JOB:-unemployment}` or `echo ${JOB}SUCKS`).
That depends on the language. In unix shell,
and
are identical, though the latter is more flexible (Allowing eg. `echo ${JOB:-unemployment}` or `echo ${JOB}SUCKS`).