Sponsored Content
Full Discussion: grep help
Top Forums Shell Programming and Scripting grep help Post 67939 by gundu on Tuesday 29th of March 2005 01:50:55 PM
Old 03-29-2005
Quote:
Originally Posted by criglerj
Given that you're going through log files, the $UserId and $xxx probably appear in the same relative places, e.g., "fred <stuff> date <stuff> query status". Just replace "<stuff>" with ".*" and wrap your original RE in parens. Keep using "double quotes" around your RE and shell variables will be expanded there. And what I wrote yesterday about UUOC still applies. Oh, and the "-e" option to egrep is only needed if your RE starts with a hyphen.

Code:
egrep "$UserId.*$xxx.*(Error|Warning|Rejected)" * > outfile

My log file looks like this :
2005-03-28 09:45:22 SYNIFSSS006003I1 50305 Provisioning Transaction Created by lp6728(UserId)
2005-03-28 09:45:22 SYNIFSSS006070I1 50305 Provisioning Transaction Description: Provisioning by lp6728: Create, classname=S
IVXVPNAccessPath, name=Site1
2005-03-28 09:45:22 SYNIFSSS006006I1 50305 Provisioning Transaction Opened by lp6728
2005-03-28 09:45:22 SYNIFSSS126003I1 50305 Provisioning Transaction 50305 processing with pid 23377 in /netprov/env7/server/
log/output/2005-03-25.10:02:38/SYCCSServer_23377.0

date and userid are not in set places, it starts with date field.

I tried : and it is giving no such userid:

egrep ["$UserId *" "$xxx *" "(Error|Warning|Rejected)"] * > /export/home/$USR/***/one

if [ -s /export/home/$USR/l***/one ]; then
Mail -s "Transactions for $UserId" ***@***.com < /export/home/$USR/***/one
else
echo No such userid $UserId >&2
break
fi
rm /export/home/$USR/***/one

Thanks,
Gundu
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

MEM=`ps v $PPID| grep -i db2 | grep -v grep| awk '{ if ( $7 ~ " " ) { print 0 } else

Hi Guys, I need to set the value of $7 to zero in case $7 is NULL. I've tried the below command but doesn't work. Any ideas. thanks guys. MEM=`ps v $PPID| grep -i db2 | grep -v grep| awk '{ if ( $7 ~ " " ) { print 0 } else { print $7}}' ` Harby. (4 Replies)
Discussion started by: hariza
4 Replies

2. UNIX for Dummies Questions & Answers

| help | unix | grep - Can I use grep to return a string with exactly n matches?

Hello, I looking to use grep to return a string with exactly n matches. I'm building off this: ls -aLl /bin | grep '^.\{9\}x' | tr -s ' ' -rwxr-xr-x 1 root root 632816 Nov 25 2008 vi -rwxr-xr-x 1 root root 632816 Nov 25 2008 view -rwxr-xr-x 1 root root 16008 May 25 2008... (7 Replies)
Discussion started by: MykC
7 Replies

3. UNIX for Dummies Questions & Answers

| help | unix | grep (GNU grep) 2.5.1 | advanced regex syntax

Hello, I'm working on unix with grep (GNU grep) 2.5.1. I'm going through some of the newer regex syntax using Regular Expression Reference - Advanced Syntax a guide. ls -aLl /bin | grep "\(x\)" Which works, just highlights 'x' where ever, when ever. I'm trying to to get (?:) to work but... (4 Replies)
Discussion started by: MykC
4 Replies

4. Shell Programming and Scripting

grep for certain files using a file as input to grep and then move

Hi All, I need to grep few files which has words like the below in the file name , which i want to put it in a file and and grep for the files which contain these names and move it to a new directory , full file name -C20091210.1000-20091210.1100_SMGBSC3:1000... (2 Replies)
Discussion started by: anita07
2 Replies

5. UNIX for Dummies Questions & Answers

Difference between grep, egrep & grep -i

Hi All, Please i need to know the difference between grep, egrep & grep -i when used to serach through a file. My platform is SunOS 5.9 & i'm using the korn shell. Regards, - divroro12 - (2 Replies)
Discussion started by: divroro12
2 Replies

6. UNIX for Dummies Questions & Answers

Advanced grep'in... grep for data next to static element.

I have a directory I need to grep which consists of numbered sub directories. The sub directory names change daily. A file resides in this main directory that shows which sub directories are FULL backups or INCREMENTAL backups. My goal is to grep the directory for the word "full" and then... (2 Replies)
Discussion started by: SysAdm2
2 Replies

7. Shell Programming and Scripting

AWK/GREP: grep only lines starting with integer

I have an input file 12.4 1.72849432773174e+01 -7.74784188610632e+01 12.5 9.59432114416327e-01 -7.87018212757537e+01 15.6 5.20139995965960e-01 -5.61612429666624e+01 29.3 3.76696387248366e+00 -7.42896194101892e+01 32.1 1.86899877018077e+01 -7.56508762501408e+01 35 6.98857157014640e+00... (2 Replies)
Discussion started by: chrisjorg
2 Replies

8. UNIX for Dummies Questions & Answers

Bash - CLI - grep - Passing result to grep through pipe

Hello. I want to get all modules which are loaded and which name are exactly 2 characters long and not more than 2 characters and begin with "nv" lsmod | (e)grep '^nv???????????? I want to get all modules which are loaded and which name begin with "nv" and are 2 to 7 characters long ... (1 Reply)
Discussion started by: jcdole
1 Replies

9. UNIX for Dummies Questions & Answers

Piping grep into awk, read the next line using grep

Hi, I have a number of files containing the information below. """"" Fundallinfo 6.3950 14.9715 14.0482 """"" I would like to grep for Fundallinfo and use it to read the next line? I ideally would like to read the three numbers that follow in the next line and... (2 Replies)
Discussion started by: Paul Moghadam
2 Replies

10. Shell Programming and Scripting

Inconsistent `ps -eaf -o args | grep -i sfs_pcard_load_file.ksh | grep -v grep | wc -l`

i have this line of code that looks for the same file if it is currently running and returns the count. `ps -eaf -o args | grep -i sfs_pcard_load_file.ksh | grep -v grep | wc -l` basically it is assigned to a variable ISRUNNING=`ps -eaf -o args | grep -i sfs_pcard_load_file.ksh |... (6 Replies)
Discussion started by: wtolentino
6 Replies
Mojo::Transaction(3pm)					User Contributed Perl Documentation				    Mojo::Transaction(3pm)

NAME
Mojo::Transaction - Transaction base class SYNOPSIS
use Mojo::Base 'Mojo::Transaction'; DESCRIPTION
Mojo::Transaction is an abstract base class for transactions. EVENTS
Mojo::Transaction can emit the following events. "connection" $tx->on(connection => sub { my ($tx, $connection) = @_; ... }); Emitted when a connection has been assigned to transaction. "finish" $tx->on(finish => sub { my $tx = shift; ... }); Emitted when transaction is finished. "resume" $tx->on(resume => sub { my $tx = shift; ... }); Emitted when transaction is resumed. ATTRIBUTES
Mojo::Transaction implements the following attributes. "kept_alive" my $kept_alive = $tx->kept_alive; $tx = $tx->kept_alive(1); Connection has been kept alive. "local_address" my $local_address = $tx->local_address; $tx = $tx->local_address($address); Local interface address. "local_port" my $local_port = $tx->local_port; $tx = $tx->local_port($port); Local interface port. "previous" my $previous = $tx->previous; $tx = $tx->previous(Mojo::Transaction->new); Previous transaction that triggered this followup transaction. # Path of previous request say $tx->previous->req->url->path; "remote_address" my $remote_address = $tx->remote_address; $tx = $tx->remote_address($address); Remote interface address. "remote_port" my $remote_port = $tx->remote_port; $tx = $tx->remote_port($port); Remote interface port. "req" my $req = $tx->req; $tx = $tx->req(Mojo::Message::Request->new); HTTP 1.1 request, defaults to a Mojo::Message::Request object. "res" my $res = $tx->res; $tx = $tx->res(Mojo::Message::Response->new); HTTP 1.1 response, defaults to a Mojo::Message::Response object. METHODS
Mojo::Transaction inherits all methods from Mojo::EventEmitter and implements the following new ones. "client_close" $tx->client_close; Transaction closed. "client_read" $tx->client_read($chunk); Read and process client data. Meant to be overloaded in a subclass. "client_write" my $chunk = $tx->client_write; Write client data. Meant to be overloaded in a subclass. "connection" my $connection = $tx->connection; $tx = $tx->connection($connection); Connection identifier or socket. "error" my $message = $tx->error; my ($message, $code) = $tx->error; Parser errors and codes. "is_finished" my $success = $tx->is_finished; Check if transaction is finished. "is_websocket" my $false = $tx->is_websocket; False. "is_writing" my $success = $tx->is_writing; Check if transaction is writing. "resume" $tx = $tx->resume; Resume transaction. "server_close" $tx->server_close; Transaction closed. "server_read" $tx->server_read($chunk); Read and process server data. Meant to be overloaded in a subclass. "server_write" my $chunk = $tx->server_write; Write server data. Meant to be overloaded in a subclass. "success" my $res = $tx->success; Returns the Mojo::Message::Response object ("res") if transaction was successful or "undef" otherwise. Connection and parser errors have only a message in "error", 400 and 500 responses also a code. # Sensible exception handling if (my $res = $tx->success) { say $res->body; } else { my ($message, $code) = $tx->error; if ($code) { say "$code $message response."; } else { say "Connection error: $message"; } } Error messages can be accessed with the "error" method of the transaction object. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Transaction(3pm)
All times are GMT -4. The time now is 03:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy