a. Have a scenario where in have some environment variables and other alias set.
b. But I wanted to store that info in a different string and whenever the user calls the particular alias, it needs to print all the string store in that variable, like HELP function.
c. I was trying like,
printinfo_var = "
This is line 1.
This is line 2.
This is line 3.
"
alias printinfo 'echo $printinfo_var'
Query: 1. But I am unable to proceed with the same when I tried in CSHELL Script. 2. Which is the best scripting methodology that I can use to set and print environment variables??
Share in your comments !