I have the following code
let a=1
let b=a
echo $b
When i echo b, i want it to refer it's value (which is 'a'), and display the value of a( which is '1')
Can this be achieved?
I have the following code
let a=1
let b=a
echo $b
When i echo b, i want it to refer it's value (which is 'a'), and display the value of a( which is '1')
Can this be achieved?
I think you want let b=$a