Sponsored Content
Full Discussion: help with awk or sed
Top Forums Shell Programming and Scripting help with awk or sed Post 302231203 by Annihilannic on Monday 1st of September 2008 11:17:24 PM
Old 09-02-2008
Try this:

Code:
perl  -nle '
    BEGIN { %seen = ("tito-k.abcd.com" => 1, "reta-k.abcd.com" => 1); }
    print unless $seen{$_}++;
    END { print "pppp.abcd.com" unless $seen{"pppp.abcd.com"} }
' file

 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk / sed

I have many messages such as the test message below: 00:00000:00021:2002/05/13 13:57:00.51 ERROR:- Test error, my test error!!! I am writing a script in which I need to get everything from the word "ERROR:-" onwards. I normally use awk for these things, but I am not an expert at it so i am... (6 Replies)
Discussion started by: baileyr1
6 Replies

2. Shell Programming and Scripting

sed,awk

Hi, I know sed is stream text editor and not a bit more than that. Can anyone explain its usage and advantages? How is awk different from sed? I donno i am a bit confused about it. But i have coded in awk and shell. Thanks, Nisha :confused: (7 Replies)
Discussion started by: Nisha
7 Replies

3. UNIX for Advanced & Expert Users

sed in awk ? or nested awk ?

Hey all, Can I put sed command inside the awk action ?? If not then can i do grep in the awk action ?? For ex: awk '$1=="174" { ppid=($2) ; sed -n '/$ppid/p' tempfind.txt ; }' tempfind.txt Assume: 174 is string. Assume: tempfind.txt is used for awk and sed both. tempfind.txt... (11 Replies)
Discussion started by: varungupta
11 Replies

4. UNIX for Advanced & Expert Users

Awk or Sed help

Hi, I have a data file with 5 columns - like this: "20080401 09:43:08.770798 +0100s","TEST 1","R 1","A TEST","Nov 27 2007","1" "20080401 09:43:08.770798 +0100s","THIS IS A TEST","R 2","B TEST","Nov 30 2007","10" "20080401 09:43:08.770798 +0100s","ANOTHER TEST","R 3","B TEST","Nov 05... (7 Replies)
Discussion started by: MrG-San
7 Replies

5. UNIX for Dummies Questions & Answers

sed or awk?

I've got an inventory database with eight columns with things like product name, manufacturer, UPC code, etc. on each line. Our PO (purchase order) number is in the first column. I can grep the date and get the full line of data but I would like to strip out everything but the PO number in the... (5 Replies)
Discussion started by: NetJones
5 Replies

6. Shell Programming and Scripting

Using sed or awk?

What if I wanted to add a word such as IT after the first character and if theres 3 characters, after the 2nd character? output would be: G, it H G, H it P G, H, P it L I'm thinking that AWK would be the easiest way to do this... Currently looking it up. Right now I'm using awk but I... (13 Replies)
Discussion started by: puttster
13 Replies

7. Shell Programming and Scripting

Need help using awk or sed.

Hi All, Is there a way of comparing two columns in the same file and deleting the row if the values of the columns match. I have the sample data file as below. M024900|175309.00|968.00|17 M025001|19861.79|97.90|148 M025002|431.70|159.00|3 M025003|912.30|159.90|6 ... (6 Replies)
Discussion started by: nua7
6 Replies

8. UNIX for Dummies Questions & Answers

sed/awk or help please

I have a file that contain the data below: B1 1 2 3 B2 20 30 40 B3 7 8 B4 100 B5 21 22 23How can I retrieve the data for B1 into a seperate file. (8 Replies)
Discussion started by: bobo
8 Replies

9. Shell Programming and Scripting

Is this possible using SED and AWK?

Dear Geeks, I want to manipulate a file with certain modifications for that using sed or AWK how to do this process for one file i have this type of data. Input File: "Restricted and Reserved names .ANISH",3798,"TEST.CO",1201208,6/16/10 0:00,6/16/13 0:00,,,"CO","2nd"^M "Restricted and... (4 Replies)
Discussion started by: anishkumarv
4 Replies

10. Shell Programming and Scripting

sed and awk giving error ./sample.sh: line 13: sed: command not found

Hi, I am running a script sample.sh in bash environment .In the script i am using sed and awk commands which when executed individually from terminal they are getting executed normally but when i give these sed and awk commands in the script it is giving the below errors :- ./sample.sh: line... (12 Replies)
Discussion started by: satishmallidi
12 Replies
Apache::TestUtil(3)					User Contributed Perl Documentation				       Apache::TestUtil(3)

NAME
Apache::TestUtil - Utility functions for writing tests SYNOPSIS
use Apache::Test; use Apache::TestUtil; ok t_cmp("foo", "foo", "sanity check"); t_write_file("filename", @content); my $fh = t_open_file($filename); t_mkdir("/foo/bar"); t_rmtree("/foo/bar"); t_is_equal($a, $b); DESCRIPTION
"Apache::TestUtil" automatically exports a number of functions useful in writing tests. All the files and directories created using the functions from this package will be automatically destroyed at the end of the program exe- cution (via END block). You should not use these functions other than from within tests which should cleanup all the created directories and files at the end of the test. FUNCTIONS
t_cmp() t_cmp($expected, $received, $comment); t_cmp() prints the values of $comment, $expected and $received. e.g.: t_cmp(1, 1, "1 == 1?"); prints: # testing : 1 == 1? # expected: 1 # received: 1 then it returns the result of comparison of the $expected and the $received variables. Usually, the return value of this function is fed directly to the ok() function, like this: ok t_cmp(1, 1, "1 == 1?"); the third argument ($comment) is optional, mostly useful for telling what the comparison is trying to do. It is valid to use "undef" as an expected value. Therefore: my $foo; t_cmp(undef, $foo, "undef == undef?"); will return a true value. You can compare any two data-structures with t_cmp(). Just make sure that if you pass non-scalars, you have to pass their references. The datastructures can be deeply nested. For example you can compare: t_cmp({1 => [2..3,{5..8}], 4 => [5..6]}, {1 => [2..3,{5..8}], 4 => [5..6]}, "hash of array of hashes"); You can also compare the second argument against the first as a regex. Use the "qr//" function in the first argument. For example: t_cmp(qr/^abc/, "abcd", "regex compare"); will do: "abcd" =~ /^abc/; This function is exported by default. t_debug() t_debug("testing feature foo"); t_debug("test", [1..3], 5, {a=>[1..5]}); t_debug() prints out any datastructure while prepending "#" at the beginning of each line, to make the debug printouts comply with "Test::Harness"'s requirements. This function should be always used for debug prints, since if in the future the debug printing will change (e.g. redirected into a file) your tests won't need to be changed. This function is exported by default. t_write_file() t_write_file($filename, @lines); t_write_file() creates a new file at $filename or overwrites the existing file with the content passed in @lines. If only the $filename is passed, an empty file will be created. If parent directories of $filename don't exist they will be automagically created. The generated file will be automatically deleted at the end of the program's execution. This function is exported by default. write_shell_script() write_shell_script($filename, @lines); Similar to t_write_file() but creates a portable shell/batch script. The created filename is constructed from $filename and an appro- priate extension automatically selected according to the platform the code is running under. It returns the extension of the created file. write_perl_script() write_perl_script($filename, @lines); Similar to t_write_file() but creates a executable Perl script with correctly set shebang line. t_open_file() my $fh = t_open_file($filename); t_open_file() opens a file $filename for writing and returns the file handle to the opened file. If parent directories of $filename don't exist they will be automagically created. The generated file will be automatically deleted at the end of the program's execution. This function is exported by default. t_mkdir() t_mkdir($dirname); t_mkdir() creates a directory $dirname. The operation will fail if the parent directory doesn't exist. If parent directories of $dirname don't exist they will be automagically created. The generated directory will be automatically deleted at the end of the program's execution. This function is exported by default. t_rmtree() t_rmtree(@dirs); t_rmtree() deletes the whole directories trees passed in @dirs. This function is exported by default. chown() Apache::TestUtil::chown($file); Change ownership of $file to the test's User/Group. This function is noop on platforms where chown(2) is unsupported (e.g. Win32). t_is_equal() t_is_equal($a, $b); t_is_equal() compares any two datastructures and returns 1 if they are exactly the same, otherwise 0. The datastructures can be nested hashes, arrays, scalars, undefs or a combination of any of these. See t_cmp() for an example. If $a is a regex reference, the regex comparison "$b =~ $a" is performed. For example: t_is_equal(qr{^Apache}, $server_version); If comparing non-scalars make sure to pass the references to the datastructures. This function is exported by default. AUTHOR
Stas Bekman <stas@stason.org> SEE ALSO
perl(1) perl v5.8.0 2002-01-06 Apache::TestUtil(3)
All times are GMT -4. The time now is 10:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy