2

对于这个csh脚本

#!/bin/csh

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

我收到这个错误

foreach: Words not parenthesized.

我该如何解决?

4

1 回答 1

6

应该没有in

foreach file ( . )

请务必阅读停止使用(和教学)C-Shell

于 2012-10-26T20:31:40.060 回答