Sponsored Content
Full Discussion: grep & awk
Top Forums Shell Programming and Scripting grep & awk Post 302349845 by *Jess* on Wednesday 2nd of September 2009 04:03:28 AM
Old 09-02-2009
Thanks a lot, i actually did try similiar 1...not working as well..

Attach is our tester output. We are only interested in Report for Site 0 & Report for Site 1 which is highlighted in red. We would want to take out all the values for %.

Still scratching my head now....

Last edited by *Jess*; 09-02-2009 at 05:27 AM..
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Awk: Version && nextfile

How can I find which version of Awk is installed? OpSystem is HPUX 11.x I am getting an error when trying to use the keyword nextfile and I dont know why! (Well, I can only assume that I have am using a version of Awk that does not support nextfile. However, according to O'Reilly, nextfile is... (3 Replies)
Discussion started by: google
3 Replies

2. UNIX for Dummies Questions & Answers

tar & Grep together

Hi, I've got dozens of tar's with two files in each one, live_access_log & live_error_log (one tar for each day, backups). The probelm is i need to match a pattern in all of the archive_access_log files and output the line to a seperate file (All_access.log). I.e. I need to get details... (21 Replies)
Discussion started by: tom123
21 Replies

3. 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

4. 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

5. Shell Programming and Scripting

awk & grep - check for a value and write sub-word

Hi people, I have a file status.txt: Following 6 ports are totally or partially unavailable: ------------------------------------------------------------ MOD LINK PORTNAMES STAT1 STAT2 STAT3 SYN TYPE ------------------------------------------------------------ 8 Pr37 ... (12 Replies)
Discussion started by: gc_sw
12 Replies

6. Shell Programming and Scripting

awk (gawk) grep & columns

Hi, I'm working with gawk (on DOS) today. A goal is: find a string for-instance '123', cut a line in two columns and write second one. The problem is: command line works OK, awk file doesn't. But I would like to work with file because there are many strings to find. input: line command: awk... (4 Replies)
Discussion started by: frajer
4 Replies

7. Shell Programming and Scripting

copying file information using awk & grep

Hi, TASK 1: I have been using this code to print the information of files kept at "/castor/cern.ch/user/s/sudha/forPooja" in some text file name FILE.txt. rfdir /castor/cern.ch/user/s/sudha/forPooja | grep data | awk '{print "rfio:///castor/cern.ch/user/s/sudha/forPooja/"$9}' > FILE.txt ... (6 Replies)
Discussion started by: nrjrasaxena
6 Replies

8. Shell Programming and Scripting

Using Grep & find & while read line in a script

Hello people! I would like to create one script following this stage I have one directory with 100 files File001 File002 ... File100 (This is the format of content of the 100 files) 2012/03/10 12:56:50:221875936 1292800448912 12345 0x00 0x04 0 then I have one... (0 Replies)
Discussion started by: Abv_mx81
0 Replies

9. Shell Programming and Scripting

awk Help: quick and easy question may be: How to use &&

Hi Guru's. I am trying to use to check if $5 is greater than 80 & if not 100, then to print $0 : awk '{ if ($5>80) && if ($5 != 100) print $0} But getting error: >bdf1|sed 's/%//g'|awk '{ if ($5>80) && if ($5 != 100) print $0}' syntax error The source line is 1. The error... (6 Replies)
Discussion started by: rveri
6 Replies
megaco_encoder(3erl)					     Erlang Module Definition					      megaco_encoder(3erl)

NAME
megaco_encoder - Megaco encoder behaviour. DESCRIPTION
The following functions should be exported from a megaco_encoder callback module: DATA TYPES
megaco_message() = #'MegacoMessage{}' transaction() = {transactionRequest, transaction_request()} | {transactionPending, transaction_reply()} | {transactionReply, transaction_pending()} | {transactionResponseAck, transaction_response_ack()} | {segmentReply, segment_reply()} transaction_request() = #'TransactionRequest'{} transaction_pending() = #'TransactionPending'{} transaction_reply() = #'TransactionReply'{} transaction_response_ack() = [transaction_ack()] transaction_ack() = #'TransactionAck'{} segment_reply() = #'SegmentReply'{} action_request() = #'ActionRequest'{} action_reply() = #'ActionReply'{} EXPORTS
Module:encode_message(EncodingConfig, Version, Message) -> {ok, Bin} | Error Types EncodingConfig = list() Version = integer() Message = megaco_message() Bin = binary() Error = term() Encode a megaco message. Module:decode_message(EncodingConfig, Version, Bin) -> {ok, Message} | Error Types EncodingConfig = list() Version = integer() | dynamic Message = megaco_message() Bin = binary() Error = term() Decode a megaco message. Note that if the Version argument is dynamic , the decoder should try to figure out the actual version from the message itself and then use the proper decoder, e.g. version 1. If on the other hand the Version argument is an integer, it means that this is the expected version of the message and the decoder for that version should be used. Module:decode_mini_message(EncodingConfig, Version, Bin) -> {ok, Message} | Error Types EncodingConfig = list() Version = integer() | dynamic Message = megaco_message() Bin = binary() Error = term() Perform a minimal decode of a megaco message. The purpose of this function is to do a minimal decode of Megaco message. A successfull result is a 'MegacoMessage' in which only version and mid has been initiated. This function is used by the megaco_messenger module when the decode_message/3 function fails to figure out the mid (the actual sender) of the message. Note again that a successfull decode only returns a partially initiated message. Module:encode_transaction(EncodingConfig, Version, Transaction) -> OK | Error Types EncodingConfig = list() Version = integer() Transaction = transaction() OK = {ok, Bin} Bin = binary() Error = {error, Reason} Reason = not_implemented | OtherReason OtherReason = term() Encode a megaco transaction. If this, for whatever reason, is not supported, the function should return the error reason not_imple- mented . This functionality is used both when the transaction sender is used and for segmentation. So, for either of those to work, this function must be fully supported! Module:encode_action_requests(EncodingConfig, Version, ARs) -> OK | Error Types EncodingConfig = list() Version = integer() ARs = action_requests() action_requests() = [action_request()] OK = {ok, Bin} Bin = binary() Error = {error, Reason} Reason = not_implemented | OtherReason OtherReason = term() Encode megaco action requests. This function is called when the user calls the function encode_actions/3 . If that function is never used or if the codec cannot support this (the encoding of individual actions), then return with error reason not_implemented . Module:encode_action_reply(EncodingConfig, Version, AR) -> OK | Error Types EncodingConfig = list() Version = integer() AR = action_reply() OK = {ok, Bin} Bin = binary() Error = {error, Reason} Reason = not_implemented | OtherReason OtherReason = term() Encode a megaco action reply. If this, for whatever reason, is not supported, the function should return the error reason not_imple- mented . This function is used when segmentation has been configured. So, for this to work, this function must be fully supported! Ericsson AB megaco 3.15.1 megaco_encoder(3erl)
All times are GMT -4. The time now is 09:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy