Capture all the contents between two attributes


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Capture all the contents between two attributes
# 8  
Old 10-28-2008
Hi Giri,

I am using HP-UX and for me its working fine.

$ cat file.txt
adfadsfafaf
asdfasfasdfasdfasdfasfasf
test123
qwwww
sdsad
asdasd
asdad
adadsw
sasfar
sfaf
a

afasf
OPERATION END
kgfkg
sfbf
OPERATION END
asdfadsfdasfadsfasdfasf
asdfasdfasfdasfasdfasdfasdfsadfasdfdasf

$ awk '/test123/,/OPERATION END/' file.txt
test123
qwwww
sdsad
asdasd
asdad
adadsw
sasfar
sfaf
a

afasf
OPERATION END
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

File attributes ????

I'm trying to sort out the charing of a problem folder, in the 'ls -l' list is shows as: d???????????? ? ? ? ? ? Pi-Share PiShare is the name of the directory, all the ??s make no sense to me at all, and no user (there are only two, pi and root) can make any changes to it.... (4 Replies)
Discussion started by: MuntyScrunt
4 Replies

2. Shell Programming and Scripting

Folder contents getting appended as strings while redirecting file contents to a variable

Hi one of the output of the command is as below # sed -n "/CCM-ResourceHealthCheck:/,/---------/{/CCM-ResourceHealthCheck:/d;/---------/d;p;}" Automation.OutputZ$zoneCounter | sed 's/$/<br>/' Resource List : <br> *************************** 1. row ***************************<br> ... (2 Replies)
Discussion started by: vivek d r
2 Replies

3. AIX

Identify User Attributes

SOS Guys... Is there any way to determine the user attributes, mainly if that userid is set as never expire? I do not have admin rights, and I'm working on AIX 5.3 I've tried : lsuser -f <username> but no luck on that (2 Replies)
Discussion started by: freakygs
2 Replies

4. UNIX for Advanced & Expert Users

Help with can't get execution attributes

Hi Gurus, I am trying to create a FS using SVM but system is throwing the following error. newfs /dev/md/rdsk/d1002 newfs: construct a new file system /dev/md/rdsk/d1002: (y/n)? y /usr/sbin/clri: can't get execution attributes (1 Reply)
Discussion started by: rama krishna
1 Replies

5. AIX

disk attributes from HMC

Guys Is there a way to determine the attributes of the disks installed in a system p box through HMC? (Like disk type and capacity) Thanks in advance Bala (2 Replies)
Discussion started by: balaji_prk
2 Replies

6. UNIX for Dummies Questions & Answers

Problems with any ls attributes

I got a server (test server) that hangs anytime we run a ls attribute like ls -ltr or ls -al. We can run ls | more command with no problem. But getting back to the ls attribute problem, it just sits and hangs, I did a ps -ef | grep ls, and a user had 15 sessions of ls -al running, I killed those,... (3 Replies)
Discussion started by: Sarccastik Dude
3 Replies

7. Shell Programming and Scripting

file attributes

How to retrieve file attributes in a sh/bash script (modification time, access time, size, etc.)? (1 Reply)
Discussion started by: Hitori
1 Replies

8. UNIX for Dummies Questions & Answers

how to find system attributes

hi, i am very- very new to unix i have os - sun solaris 5.9 and i want to learn more about system attributes for example, the make - model of machine , operating system & patch versions can somebody tell me a usefull command to learn these? any help would be apreciated, regards to all,... (3 Replies)
Discussion started by: merope
3 Replies

9. Shell Programming and Scripting

file attributes

how do we set file attributes at shell prompt (2 Replies)
Discussion started by: hytechpro
2 Replies

10. Shell Programming and Scripting

rcp and file attributes

Good day Does anyone have an idea on how I can rcp a file together with its attributes. owner,group, permissions ? Regards J (2 Replies)
Discussion started by: jhansrod
2 Replies
Login or Register to Ask a Question
PPIx::Regexp::Structure::Capture(3)			User Contributed Perl Documentation		       PPIx::Regexp::Structure::Capture(3)

NAME
PPIx::Regexp::Structure::Capture - Represent capture parentheses. SYNOPSIS
use PPIx::Regexp::Dumper; PPIx::Regexp::Dumper->new( 'qr{(foo)}smx' ) ->print(); INHERITANCE
"PPIx::Regexp::Structure::Capture" is a PPIx::Regexp::Structure. "PPIx::Regexp::Structure::Capture" is the parent of PPIx::Regexp::Structure::NamedCapture. DESCRIPTION
This class represents capture parentheses. METHODS
This class provides the following public methods. Methods not documented here are private, and unsupported in the sense that the author reserves the right to change or remove them without notice. name my $name = $element->name(); This method returns the name of the capture buffer. Unless the buffer is actually named, this will be "undef". number my $number = $element->number() This method returns the number of the capture buffer. Note that named buffers have numbers also. SUPPORT
Support is by the author. Please file bug reports at <http://rt.cpan.org>, or in electronic mail to the author. AUTHOR
Thomas R. Wyant, III wyant at cpan dot org COPYRIGHT AND LICENSE
Copyright (C) 2009-2013 by Thomas R. Wyant, III This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5.10.0. For more details, see the full text of the licenses in the directory LICENSES. This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. perl v5.16.3 2014-06-10 PPIx::Regexp::Structure::Capture(3)