标签: linux shell csh
对于此csh脚本
csh
#!/bin/csh foreach file in (.) echo "$file" end
我收到此错误
foreach: Words not parenthesized.
我该如何解决?
答案 0 :(得分:6)
应该没有in:
in
foreach file ( . )
请务必阅读Stop Using (and Teaching) C-Shell。