由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - foreach statement 使用
相关主题
how to proof (转载)请问如何在球体表面均匀分布N个点(赠送包子) (转载)
如果python command line positional arguments 里有些是运算,那这种argument 该怎么处理?[合集] 问个土问题 printf, 别Peng
what's wrong with this scripts?variable passing?[合集] perl symbol tables 一问
C# HtmlElement.InvokeMember at Amazon.com问个Perl的简单问题
怎么非ASCII字符就过滤不了呢?[Perl]容器里边放指针怎么办?
how to sed from grep output in c shell? (转载)PERL问题
a linux disk IO question (转载)perl problem
这里的人用BOOST都是用来做什么?Shuffle performance (C#)
相关话题的讨论汇总
话题: foreach话题: file话题: workdir话题: statement话题: 使用
进入Programming版参与讨论
1 (共1页)
m*****2
发帖数: 9
1
需要对目录下的每一个压缩数据文件执行一些操作,我用的是foreach语句,但是系统
报错,"foreach too few arguments". 哪为NN给解释一下?
foreach FILE ($WORKDIR/*.dat.gz)
blablabla
end
f******y
发帖数: 2971
2
括号里的东西试一试`ls xxxxxxx`

【在 m*****2 的大作中提到】
: 需要对目录下的每一个压缩数据文件执行一些操作,我用的是foreach语句,但是系统
: 报错,"foreach too few arguments". 哪为NN给解释一下?
: foreach FILE ($WORKDIR/*.dat.gz)
: blablabla
: end

X****r
发帖数: 3557
3
This should work -- I suspect you have quotation issue.
Did you type it from the command line, or you put them
inside a script file? If for the latter, did you start
the file with #!/bin/csh or something like that?
Also, print out the result of
echo $WORKDIR/*.dat.gz
to see if there is any special character in file names.

【在 m*****2 的大作中提到】
: 需要对目录下的每一个压缩数据文件执行一些操作,我用的是foreach语句,但是系统
: 报错,"foreach too few arguments". 哪为NN给解释一下?
: foreach FILE ($WORKDIR/*.dat.gz)
: blablabla
: end

1 (共1页)
进入Programming版参与讨论
相关主题
Shuffle performance (C#)怎么非ASCII字符就过滤不了呢?[Perl]
有个SB interviewer和我说++i比i++好 (转载)how to sed from grep output in c shell? (转载)
parsing bibliography and sorting (转载)a linux disk IO question (转载)
scala 的 for 功能强大,速度太慢 (转载)这里的人用BOOST都是用来做什么?
how to proof (转载)请问如何在球体表面均匀分布N个点(赠送包子) (转载)
如果python command line positional arguments 里有些是运算,那这种argument 该怎么处理?[合集] 问个土问题 printf, 别Peng
what's wrong with this scripts?variable passing?[合集] perl symbol tables 一问
C# HtmlElement.InvokeMember at Amazon.com问个Perl的简单问题
相关话题的讨论汇总
话题: foreach话题: file话题: workdir话题: statement话题: 使用