本文介绍了在csh上自我连接字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要将argv的部分内容连接到我的变量之一.
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)
if($param !~ TEST) then
set stringList = $stringList " " $param
endif
end
echo $stringList > /tmp/prova.txt
当然,txt文件上没有任何内容.有什么办法吗?谢谢.
Of course, nothing is printed on the txt file.Any solution? Thanks.
推荐答案
更改
set stringList = $stringList " " $param
到
set stringList = "$stringList $param"
这篇关于在csh上自我连接字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!