对于这个csh脚本
csh
#!/bin/csh foreach file in (.) echo "$file" end
我得到这个错误
foreach: Words not parenthesized.
我该如何解决这个问题?
应该没有in :
in
foreach file ( . )
请务必阅读停止使用(和教学)C-Shell 。