Answers for "how to put value of one variable into another in bash"

1

how to put value of one variable into another in bash

#Do not add a space between variable and '='.
arg2=$arg1  	#correct assignment
arg2 = $arg1 	#incorrect assignment
Posted by: Guest on May-16-2020

Code answers related to "how to put value of one variable into another in bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language