Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
awk '$7<=0.05 {print $7}' statusResults.csv > statusResults_sign.csv
这会产生一个空输出。如果第 7 列中的值小于或等于 0.05,我想将其写入新文件。
您必须更改字段分隔符,因为您有 CSV 文件。尝试这个:
awk -F, 'NR>1 && $7<=0.05 { print $7 }' test.txt
我也跳过了标题行;不知道你是否也想要。
向我们展示一些输入数据。你的命令似乎没问题。
cat file 0.06 0.05 0.04 0.08 0.02
运行 awk
awk '$1<=0.05' file 0.05 0.04 0.02