本文介绍了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 上的自连接字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!