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
Dist::Zilla::Plugin::Git::NextVersion(3pm)		User Contributed Perl Documentation		Dist::Zilla::Plugin::Git::NextVersion(3pm)

NAME
Dist::Zilla::Plugin::Git::NextVersion - provide a version number by bumping the last git release tag VERSION
version 1.121820 SYNOPSIS
In your dist.ini: [Git::NextVersion] first_version = 0.001 ; this is the default version_regexp = ^v(.+)$ ; this is the default DESCRIPTION
This does the Dist::Zilla::Role::VersionProvider role. It finds the last version number from your git tags, increments it using Version::Next, and uses the result as the "version" parameter for your distribution. The plugin accepts the following options: o "first_version" - if the repository has no tags at all, this version is used as the first version for the distribution. It defaults to "0.001". o "version_regexp" - regular expression that matches a tag containing a version. It must capture the version into $1. Defaults to ^v(.+)$ which matches the default "tag_format" from Dist::Zilla::Plugin::Git::Tag. If you change "tag_format", you must set a corresponsing "version_regexp". You can also set the "V" environment variable to override the new version. This is useful if you need to bump to a specific version. For example, if the last tag is 0.005 and you want to jump to 1.000 you can set V = 1.000. $ V=1.000 dzil release AUTHOR
Jerome Quelin COPYRIGHT AND LICENSE
This software is copyright (c) 2009 by Jerome Quelin. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-06-30 Dist::Zilla::Plugin::Git::NextVersion(3pm)
All times are GMT -4. The time now is 08:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy