Given the following table
123456.451 entered-auto_attendant 123456.451 duration:76 real:76 139651.526 entered-auto_attendant 139651.526 duration:62 real:62` 139382.537 entered-auto_attendant
Using a bash shell script based on Linux, I would like to delete all rows based on the value of column 1 (the one with the longest number). Given that this number is a variable number
I tried with
awk '{a[$3]++}!(a[$3]-1)' file
sort -u | uniq
But I do not get a result that would be like this, making a comparison between all the values ββof the first column, delete all duplicates and show it
123456.451 entered-auto_attendant 139651.526 entered-auto_attendant 139382.537 entered-auto_attendant
linux bash awk delete-row
user3494949
source share