0

谁能告诉我以下 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.

有任何想法吗?

4

1 回答 1

3

我认为您在 cut 命令中遗漏了一个减号:

cut -d, -f1-7 < $f > $f.tmp
于 2012-09-22T14:10:17.007 回答