I have in c-shell some variables referring to file names. Those variables are named like:
$T01aa2 $T12aa2 $T45aa2 etc.
They have in common the "T" and the "aa2".
How can I list these variables in a loop for instance as I would do if they were filenames:
I'd like to do something like:
foreach ii in ($T*aa2) dosomestuff.sh $ii end
Unfortunately, $T*aa2 does not apply for c-shell variable names.
thanks for any help.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Variable names are very different from file names. There is almost certainly a better way to do whatever it is you're trying to do. But if you must do it, the best you can do is something with
You may be able to get the values out of the |
||||
|
|
|
Not a big fan of csh but did you try escaping $ signs ? I mean substituting a "$" with "\$" ? |
|||
|
|
