Answers for "single quotes in environment variables"

0

single quotes in environment variables

V='some substrings grouped together'  # assignment
X="Put $V to make a longer string"    # substitution and then assignment
Y=`date`                              # run command, assign its output
Z='Put $V to make a longer string'    # no substition, simple assignment
Posted by: Guest on January-08-2021

Code answers related to "single quotes in environment variables"

Browse Popular Code Answers by Language