Sponsored Content
Top Forums Shell Programming and Scripting Getting required fields from a test file in required fromat in unix Post 302336523 by rdhanek on Wednesday 22nd of July 2009 09:34:05 AM
Old 07-22-2009
Thanks for the comment Rakeshawasthi..Here is the actual data

Code:
(05/17/2009 00:25:00.000)(:)  Port Search Parameters: (Dictionary (#pport->'1' #channel->'1-3-1' #link->'1-3-1' #sw->'GRPSOR29BB4' #group->'10' #shelf->'1' #
slot->'1' ))
(05/17/2009 00:25:04.000)(:)  Alarm processed:1945372343 Severity:2
(05/17/2009 00:25:04.000)(:)  Port Search Parameters: (Dictionary (#shelf->'1' #sw->'LKWDCOMABBA' #slot->'16-2' #pport->'7' ))
(05/17/2009 00:25:06.000)(:)  Alarm processed:1945372438 Severity:4
(05/17/2009 00:25:07.000)(:)  Port Search Parameters: (Dictionary (#pport->'1' #channel->'3-3-2' #link->'3-3-2' #sw->'SLKCUTMABBE' #group->'10' #shelf->'1' #
slot->'7' ))
(05/17/2009 00:25:10.000)(:)  Alarm processed:1945373313 Severity:2
(05/17/2009 00:25:10.000)(:)  Port Search Parameters: (Dictionary (#lport->'1' #sw->'DNVRCODCDSQ' #slot->'7' #pport->'1' #channel->'27' ))
(05/17/2009 00:25:11.000)(:)  Found No Ticket Create Rule: 373316
(05/17/2009 00:25:11.000)(:)  Port Search Parameters: (Dictionary (#shelf->'1' #sw->'FARGNDBCBB3' #slot->'12-2' #pport->'5' ))
(05/17/2009 00:25:12.000)(:)  Alarm processed:1945372747 Severity:4
(05/17/2009 00:25:12.000)(:)  Port Search Parameters: (Dictionary (#pport->'1' #channel->'2-6-2' #link->'2-6-2' #sw->'ALBQNMMABBH' #group->'9' #shelf->'1' #s
lot->'2' ))

The required output is

Code:
(05/17/2009 00:25:00.000) (05/17/2009 00:25:04.000)  1945372343
(05/17/2009 00:25:04.000) (05/17/2009 00:25:06.000)  1945372438
(05/17/2009 00:25:07.000) (05/17/2009 00:25:10.000)  1945373313

 

10 More Discussions You Might Find Interesting

1. Solaris

unix command required.

I need to get a few details from the command line. I need to get the kilobytes per second that my server is transfering to another or has available and I need to test the connection to make sure that its a sound connection. I also need to keep track of the response time. I have been playing... (1 Reply)
Discussion started by: nowayin
1 Replies

2. UNIX for Dummies Questions & Answers

Help Required in Unix Command

Hi All, Can anyone please help me in unix command Query: ==== File contains data along with date and time stamp like, .. Date: 08:23:2005 01:00:00 method: xyz init variables Date 08:23:2005 01:00:01 method: xyz finished init variable .... (2 Replies)
Discussion started by: thaduka
2 Replies

3. UNIX for Advanced & Expert Users

Required unix command!!!

Hi, In a file I have data like... -rw-r----- 1 ftpuser users 1036695 Jul 6 14:59 ./APRIL 2007/Ujjain/My Disc (D)/9565DW07.04B -rw-r----- 1 ftpuser users 124080 Jul 6 14:59 ./APRIL 2007/Vadodara/vad_APRIL07/2082DW07.04B The above data is extracted using "find . -name... (12 Replies)
Discussion started by: ronald_brayan
12 Replies

4. Shell Programming and Scripting

Help required on process in unix

What are some ways to tell if a given file is presently being used by a process? How can you tell what sort of access the process has to the file (read from, written to, filehandle held open, etc)? Can more than one process access the file at the same time? (2 Replies)
Discussion started by: choco4202002
2 Replies

5. Shell Programming and Scripting

Getting required fields from a text file in UNIX

My data is something like as shown below. Out of this i want the details of alarms (ex: 1947147711,1947147081......) and the fields( ex :sw=tacmwafabb9:shelf=1:slot=5-2:pport=2) Once i have these details separated, i want the count of these excluding the duplicates. What is the best possible way... (7 Replies)
Discussion started by: rdhanek
7 Replies

6. Shell Programming and Scripting

Unix script required

I have a file 123.txt which is aasaasas=1 bsasasasasa=2 sawqas=3 I want my output to be 1 2 3 I am new to scripting can some1 help me out. (14 Replies)
Discussion started by: karthikkasarla
14 Replies

7. Shell Programming and Scripting

Pattern Matching and extracting the required fields in Perl

Hi All, I am writing the following Perl Scrip and need your help in Pattern matching : I have the following Shell Script that would read line by line from the file (file_svn) and would inturn calls the Perl Script: #!/bin/bash perl_path="/home/dev/filter"... (2 Replies)
Discussion started by: filter
2 Replies

8. Shell Programming and Scripting

How to Modify a file content in UNIX and sort for only required fields ?

I have the below contents in a file after making the below curl call curl ... | grep -E "state|Rno" | paste -sd',\n' | grep "Disconnected" > test "state" : "Disconnected",, "Rno" : "5554f1d2" "state" : "Disconnected",, "Rno" : "10587563" "state" : "Disconnected",, "Rno" :... (2 Replies)
Discussion started by: Vaibhav H
2 Replies

9. Shell Programming and Scripting

Help required in UNIX commands

I have 40000 records in a file where i need to change the 7th field date format from 05142016 to 20160514 I have given field below. any help would be highly appreciated. 364512|9999999|9999999|210553|195495477|195257095|05142016|10009|36313 ---------- Post updated at 05:02 AM... (2 Replies)
Discussion started by: arun888
2 Replies

10. UNIX for Beginners Questions & Answers

How to search a text in file and retrieve required lines following it with UNIX command?

I have requirement to search for a text in the file and retrieve required lines that is user defined with unix command. Eg: Find the text UNIX in the below file and need to return Test 8 & Test 9 Test 1 Test 2 Test 3 Test 4 UNIX Test 5 Test 6 Test 7 Test 8 Test 9 Result can... (8 Replies)
Discussion started by: Arunkumarsak4
8 Replies
UALARM(3)						   BSD Library Functions Manual 						 UALARM(3)

NAME
ualarm -- schedule signal after specified time LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <unistd.h> useconds_t ualarm(useconds_t useconds, useconds_t interval); DESCRIPTION
This is a simplified interface to setitimer(2). The ualarm() function waits a count of useconds before asserting the terminating signal SIGALRM. System activity or time used in processing the call may cause a slight delay. If the interval argument is non-zero, the SIGALRM signal will be sent to the process every interval microseconds after the timer expires (e.g., after useconds number of microseconds have passed). Due to a setitimer(2) restriction, the maximum number of useconds and interval is limited to 100,000,000,000,000 (in case this value fits in the unsigned integer). RETURN VALUES
When the signal has successfully been caught, ualarm() returns the amount of time left on the clock. NOTES
A microsecond is 0.000001 seconds. SEE ALSO
getitimer(2), setitimer(2), sigpause(2), sigvec(2), alarm(3), signal(3), sleep(3), usleep(3) HISTORY
The ualarm() function appeared in 4.3BSD. BSD
April 19, 1994 BSD
All times are GMT -4. The time now is 07:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy