I have an alias that looks like the following
alias testalias12569537329="echo it works"
My question is: How can I call testalias12569537329
in a shell script by concatenating two strings?
x="testalias"
x+="12569537329" #timestamp
exec $x #command not found
I know that I can directly call testalias12569537329 in the shell script. But I would like to manipulate the timestamp. Thank you!