最佳答案
像下面这样的东西应该工作:
原文链接:https://www.f2er.com/linux/440591.html#!/bin/bash
FILES=/path/to/*
for f in $FILES
do
# Do something for each file. In our case,just echo the first three fields:
cut -f1-3 < "$f"
done
(有关在bash中迭代文件的更多信息,请参阅this webpage.)
M. Becerra的答案包含一个单行程序,其中使用find命令可以实现相同的目的.因此,除非您希望对每个文件进行额外的处理(例如,在迭代文件时构造一些统计信息),否则我自己的答案可能被认为比必要的更复杂.
#!/bin/bash
FILES=/path/to/*
for f in $FILES
do
# Do something for each file. In our case,echo the first three fields to a new file,and rename the new file to the original file:
cut -f1-3 < "$f" > "$f.tmp"
rm "$f"
mv "$f.tmp" "$f"
done