Assume we have a variable 'a' set to 12345 :
set a 12345
Now how do i set a new variable 'b' which contains the value of 'a' and another string say 9876
workaround is something like
set a "12345"
set u "9876"
set b $a$u
but i dont want to specify $u
instead i want the direct string to used..
set b "${a}9876"
– Dwight