A utility for downloading and verifying FreeBSD releases and snapshots
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

21 lines
236 B

  1. #!/usr/bin/awk -f
  2. {
  3. if (NF > maxnf)
  4. maxnf = NF
  5. for (i = 1; i <= NF; i++) {
  6. l = length($i)
  7. if (l > ar[i]) {
  8. ar[i] = l
  9. ex[i] = $i
  10. }
  11. }
  12. }
  13. END {
  14. for (i = 1; i <= NF; i++) {
  15. printf("%2d %2d %s\n", i, ar[i], ex[i])
  16. }
  17. }