I was surprised to get the following output from my csh code:
set myname = '*'
echo $myname
This prints me a list of all the names of my scripts in the folder from which I am executing my bash script:
myprogm1.py myprogrm2.py …
I wanted to hand over a simple string to myname: as star symbol
'*'
How can I prevent my script from printing a list of names and just interpret the *
as a string?