我在bash中编写一个脚本,它需要一个参数并存储它;
原文链接:https://www.f2er.com/bash/383683.htmlthreshold = $1
然后我有样本数据,如下所示:
5 blargh 6 tree 2 dog 1 fox 9 fridge
我只想打印数字大于作为参数(阈值)输入的数字的行.
我目前正在使用:
awk '{print $1 > $threshold}' ./file
但没有打印出来,帮助将不胜感激.