I need to concatenate partial content from argv to one of my variable.
I will show you my code:
#!/bin/csh set stringList = \"\" foreach param ($argv)
Change
set stringList = $stringList " " $param
to
set stringList = "$stringList $param"