awk -F'\t' 'function abs(x){return ((x < 0.0) ? -x : x)} {if (abs($9) < 500) print $0}'
Related Posts:
- What are NR and FNR and what does “NR==FNR” imply?
- How to remove double-quotes in jq output for parsing json files in bash?
- Printing the last column of a line in a file
- Use of `NF` in awk command
- What is the difference between sed and awk?
- How to print last two columns using awk
- How to grep for case insensitive string in a file?
- Using multiple delimiters in awk
- How to split a delimited string into an array in awk?
- How can I use “:” as an AWK field separator?
- How can I center an absolutely positioned element in a div?
- Using awk to remove the Byte-order mark
- How to Sum a column in AWK?
- How can I do a recursive find/replace of a string with awk or sed?
- Do you have any useful awk and grep scripts for parsing apache logs? [closed]