The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
finding largest directories in a filesystem GKnight Shell Programming and Scripting 8 04-30-2008 09:58 PM
The largest dump device is too small click007 AIX 4 10-26-2007 06:08 AM
find largest file mohan705 Shell Programming and Scripting 15 07-04-2007 03:34 AM
find the 5o largest files in a directory igidttam Filesystems, Disks and Memory 8 05-16-2007 02:20 PM
file of largest size in pwd rameshparsa Shell Programming and Scripting 4 11-22-2005 12:25 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 03-15-2008
jkl_jkl jkl_jkl is offline
Registered User
  
 

Join Date: Aug 2007
Posts: 46
largest field , awk , help

Hi All,

My file is like this:


Code:
$ cat max.txt
abcd:1982:a
efghij:1980:e
klmn:1923:k
opqrst:1982:o

I have to find out the largest first field and the corresponding line. i.e

Output required:


Code:
efghij efghij:1980:e
opqrst opqrst:1982:o

HTH,
jkl_jkl
  #2 (permalink)  
Old 03-15-2008
yunccll yunccll is offline
Registered User
  
 

Join Date: Mar 2008
Posts: 23
try this code:
Code:
#!/bin/bash

#constant
INFILE="max.txt"

#core script
awk ' BEGIN { OFS=FS=":"; cur=max=0; seen=""}
        {
           cur = length($1)
           if(cur > max ){
              seen = $1 " " $0
           }
           else if(cur == max){
              seen = seen "\n"  $1 " " $0
           }
        }
        END { print seen }'  $INFILE
#exit normally
exit 0

.Aaron
  #3 (permalink)  
Old 03-15-2008
jkl_jkl jkl_jkl is offline
Registered User
  
 

Join Date: Aug 2007
Posts: 46
aaron,

It prints only


Code:
opqrst opqrst:1982:o

And not


Code:
efghij efghij:1980:e
opqrst opqrst:1982:o

i.e. if there are 2 longest fields, its printing the last one.
  #4 (permalink)  
Old 03-15-2008
fpmurphy's Avatar
fpmurphy fpmurphy is offline Forum Staff  
Moderator
  
 

Join Date: Dec 2003
Location: Florida
Posts: 1,938
Just add "max=cur" and both lines are printed out as you want.


Code:
awk ' BEGIN { OFS=FS=":"; cur=max=0; seen=""}
        {
           cur = length($1)
           if (cur > max ) {
              seen = $1 " " $0
              max = cur
           } else if (cur == max) {
              seen = seen "\n"  $1 " " $0
           }
        }
        END { print seen }'  $INFILE

  #5 (permalink)  
Old 03-15-2008
Klashxx's Avatar
Klashxx Klashxx is offline Forum Advisor  
HP-UX/Linux/Oracle
  
 

Join Date: Feb 2006
Location: Almerķa, Spain
Posts: 393
Another sol:

Code:
awk '{l=length($1);if(l>=max){a[$1" "$0]=l;max=l}}END{for(i in a)if (a[i]==max)print i}' FS=':' file

  #6 (permalink)  
Old 03-16-2008
yunccll yunccll is offline
Registered User
  
 

Join Date: Mar 2008
Posts: 23
Quote:
Originally Posted by jkl_jkl View Post
aaron,

It prints only


Code:
opqrst opqrst:1982:o

And not


Code:
efghij efghij:1980:e
opqrst opqrst:1982:o

i.e. if there are 2 longest fields, its printing the last one.
oh,sorry, I forgot the "max =cur", when I input my code into the reply!

.Aaron
  #7 (permalink)  
Old 11-29-2008
bashisthebest bashisthebest is offline
Registered User
  
 

Join Date: Nov 2008
Posts: 1
How would you find the lowest field and the corresponding line?

Hi i was wondering how you would do the opposite meaning find the lowest field and the corresponding line?

thanks in advance.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 06:11 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0