谁能告诉我以下 bash 代码有什么问题
for f in $FILES
do
cut -d, f1-7 < $f > $f.tmp
done
当我在循环中运行时
echo "cut -d, f1-7 < $f > $f.tmp"
我得到了正确的命令输出,当我自己运行该命令时,它运行良好。但是当我在 bash 循环中运行它时,它不起作用,我收到以下错误:
cut: you must specify a list of bytes, characters, or fields
Try `cut --help' for more information.
有任何想法吗?