简体   繁体   中英

AWK script to print line with the largest number of fields

The script below displays the largest number of fields in twister.txt.

  awk '{if (NF > max) max = NF} END{print max}' twister.txt

My question is, How do you display the line itself, which has the largest number of fields in twister.txt.

awk '{if (NF > max) {max = NF; line=$0}} END{print line}' twister.txt

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM