Sponsored Content
Top Forums Shell Programming and Scripting Problem to print out record got smallest number in specific column Post 302890453 by Don Cragun on Wednesday 26th of February 2014 11:36:02 PM
Old 02-27-2014
You could try something like:
Code:
awk '
function chk() {
        l1 = $3 < $4 ? $3 : $4
        l2 = $3 > $4 ? $3 : $4
        return(l1 < low1 || (l1 == low1 && l2 < low2))
}
function sav(sl1, sl2) {
        low1 = sl1
        low2 = sl2
        line = $0
}
NR == 1 {
        sav($3 < $4 ? $3 : $4, $3 > $4 ? $3 : $4)
        next
}
chk() { sav(nl1, nl2)
}
END {   print line
}' file

This User Gave Thanks to Don Cragun For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to print largest and smallest number.

Hey. This is pretty easy stuff but I'm learning the basics of Unix at the moment so keep that in mind. I have to: 1) Write a C-shell script to monitor user activity on the server for 13 minutes. 2) Then print the smallest and largest number of users during these 13 minutes. I have this: 1)... (2 Replies)
Discussion started by: amp10388
2 Replies

2. Shell Programming and Scripting

print first few lines, then apply regex on a specific column to print results.

abc.dat tty cpu tin tout us sy wt id 0 0 7 3 19 71 extended device statistics r/s w/s kr/s kw/s wait actv wsvc_t asvc_t %w %b device 0.0 133.2 0.0 682.9 0.0 1.0 0.0 7.2 0 79 c1t0d0 0.2 180.4 0.1 5471.2 3.0 2.8 16.4 15.6 15 52 aaaaaa1-xx I want to skip first 5 line... (4 Replies)
Discussion started by: kchinnam
4 Replies

3. Shell Programming and Scripting

Print smallest negative number with corresponding index from a column

considering the following table: ID col1 col2 col3 col4 1 -16.06801249 13.49785832 -56.57087607 -27.00500526 2 -1.53315720 0.71731735 -42.03602078 -39.78554623 3 -1.53315190 0.71731587 -42.03601548 ... (3 Replies)
Discussion started by: Birda
3 Replies

4. Shell Programming and Scripting

Help with print out line that have different record in specific column

Input file 1: - 7367 8198 - 8225 9383 + 9570 10353 Input file 2: - 2917 3667 - 3851 4250 + 4517 6302 + 6302 6740 + 6768 7524 + 7648 8170 + 8272 8896 + 8908 9915 - 10010 ... (18 Replies)
Discussion started by: perl_beginner
18 Replies

5. Shell Programming and Scripting

Execution problem with print out record that follow specific pattern

Hi, Do anybody know how to print out only those record that column 1 is "a" , then followed by "b"? Input file : a comp92 2404242 2405172 b comp92 2405303 2406323 b comp92 2408786 2410278 a comp92 2410271 2410337 a comp87 1239833 1240418 b comp87... (3 Replies)
Discussion started by: patrick87
3 Replies

6. Shell Programming and Scripting

Help with compare two column and print out column with smallest number

Input file : 5 20 500 2 20 41 41 0 23 1 Desired output : 5 2 20 0 1 By comparing column 1 and 2 in each line, I hope can print out the column with smallest number. I did try the following code, but it don't look good :( (2 Replies)
Discussion started by: perl_beginner
2 Replies

7. Shell Programming and Scripting

Problem facing to compare different column and print out record with smallest number

Hi, Input file 1 : 37170 37196 77 51 37174 37195 73 52 37174 37194 73 53 Desired Output file 1 : 37170 37196 77 51 Input file 2 : 37174 37195 73 0 37170 37196 77 0 Desired Output file 2 : 37174 37195 73 0 (1 Reply)
Discussion started by: cpp_beginner
1 Replies

8. Shell Programming and Scripting

Split column data if the table has n number of column's with some record

Split column data if the table has n number of column's with some record then how to split n number of colmn's line by line with records Table --------- Col1 col2 col3 col4 ....................col20 1 2 3 4 .................... 20 a b c d .................... v ... (11 Replies)
Discussion started by: Priti2277
11 Replies

9. Shell Programming and Scripting

Help with keep the smallest record in file

Input file US Score 10 UK Ball 20 AS Score 50 AK Ball 10 PZ Ballon 50 PA Score 70 WT Data 10 . . Desired output file US Score 10 AK Ball 10 WT Data 10 . . (2 Replies)
Discussion started by: perl_beginner
2 Replies

10. Shell Programming and Scripting

Bash script to print the smallest floating point number in a row that is not 0

Hello, I have often found bash to be difficult when it comes to floating point numbers. I have data with rows of tab delimited floating point numbers. I need to find the smallest number in each row that is not 0.0. Numbers can be negative and they do not come in any particular order for a given... (9 Replies)
Discussion started by: LMHmedchem
9 Replies
DBIx::FullTextSearch::StopList(3pm)			User Contributed Perl Documentation		       DBIx::FullTextSearch::StopList(3pm)

NAME
DBIx::FullTextSearch::StopList - Stopwords for DBIx::FullTextSearch SYNOPSIS
use DBIx::FullTextSearch::StopList; # connect to database (regular DBI) my $dbh = DBI->connect('dbi:mysql:database', 'user', 'passwd'); # create a new empty stop word list my $sl1 = DBIx::FullTextSearch::StopList->create_empty($dbh, 'sl_web_1'); # or create a new one with default stop words my $sl2 = DBIx::FullTextSearch::StopList->create_default($dbh, 'sl_web_2', 'english'); # or open an existing one my $sl3 = DBIx::FullTextSearch::StopList->open($dbh, 'sl_web_3'); # add stop words $sl1->add_stop_word(['a','in','on','the']); # remove stop words $sl2->remove_stop_word(['be','because','been','but','by']); # check if word is in stoplist $bool = $sl1->is_stop_word('in'); # empty stop words $sl3->empty; # drop stop word table $sl2->drop; DESCRIPTION
DBIx::FullTextSearch::StopList provides stop lists that can be used -DBIx::FullTextSearch. StopList objects can be reused accross several FullTextSearch objects. METHODS
CONSTRUCTERS create_empty my $sl = DBIx::FullTextSearch::StopList->create_empty($dbh, $sl_name); This class method creates a new StopList object. create_default my $sl = DBIx::FullTextSearch::StopList->create_default($dbh, $sl_name, $language); This class method creates a new StopList object, with default words loaded in for the given language. Supported languages include Czech, Danish, Dutch, English, Finnish, French, German, Italian, Portuguese, Spanish, and Swedish. open my $sl = DBIx::FullTextSearch::StopList->open($dbh, $sl_name); Opens and returns StopList object OBJECT METHODS add_stop_word $sl->add_stop_word(@stop_words); Adds stop words to StopList object. Expects array reference as argument. remove_stop_word $sl->remove_stop_word(@stop_words); Remove stop words from StopList object. is_stop_word $bool = $sl->is_stop_word($stop_word); Returns true iff stop_word is StopList object empty $sl->empty; Removes all stop words in StopList object. drop $sl->drop; Removes table associated with the StopList object. AUTHOR
T.J. Mather, tjmather@tjmather.com, http://www.tjmather.com/ COPYRIGHT
All rights reserved. This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
DBIx::FullTextSearch perl v5.8.8 2007-10-23 DBIx::FullTextSearch::StopList(3pm)
All times are GMT -4. The time now is 10:45 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy