在csh中使用foreach语法

时间:2012-10-26 20:27:36

标签: linux shell csh

对于此csh脚本

#!/bin/csh

foreach file in (.)
  echo "$file"
end

我收到此错误

foreach: Words not parenthesized.

我该如何解决?

1 个答案:

答案 0 :(得分:6)

应该没有in

foreach file ( . )

请务必阅读Stop Using (and Teaching) C-Shell