Im running a csh under Linux (so nothing that normally with csh under Solaris) and have hit a snag. How do I append a text string onto an array?
If I do...
set T = ()
set T = ( $T "My String" "plus a bit more" )
I want "My string" to be one element and "plus a bit more" to be the next. In practice the array takes each space delimited word (so I get "My", "String", "plus" etc.).
Any ideas? Ive tried every combination of brackets, quotes, curlies.