Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use awk to filter and output data on linux

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

Editor to share with you how to use awk to filter and output data on linux. I hope you will get something after reading this article. Let's discuss it together.

Use awk to filter the data on linux and output

According to the data file, the qualified data is judged by awk, and the result data is filtered out and input into the corresponding file.

Awk'{if ($7 > 5) print}'A | less # filter the data in the seventh column greater than 5 in A file and display all the matching results awk'{if ($6 > 5 & $7 > 5) print}'A | less # filter the data in A file where the sixth and seventh columns are greater than 5, and show all the matching results awk'{if ($6 > 5 | | $7 > 5) print}'A | less # filter the data in which the sixth or seventh columns in A file are greater than 5 Show all the matching results awk'{if ($7 > 5) print}'A | less > B # filter the seventh column of data greater than 5 in A file, and input the matching results into B file to finish reading this article. I believe you have a certain understanding of "how to use awk to filter and output data on linux". If you want to know more about it, welcome to follow the industry information channel. Thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report