Sponsored Content
Contact Us Post Here to Contact Site Administrators and Moderators A pattern matching Admin ate my hamster Post 302817195 by jim mcnamara on Wednesday 5th of June 2013 10:59:12 AM
Old 06-05-2013
@Scott -- +Thanks for the title.
 

9 More Discussions You Might Find Interesting

1. Linux

Fetchmail Ate my inbox!

Hello All. I was messing around with Fetchmail on a Test Email account. Here's what my fetchmailrc file looks like: poll imap.gmail.com proto IMAP fetchall ssl When I ran this, it removed all the test emails from my Google Account. There were a few emails that I needed, however, I... (3 Replies)
Discussion started by: drewrockshard
3 Replies

2. Shell Programming and Scripting

comment/delete a particular pattern starting from second line of the matching pattern

Hi, I have file 1.txt with following entries as shown: 0152364|134444|10.20.30.40|015236433 0233654|122555|10.20.30.50|023365433 ** ** ** In file 2.txt I have the following entries as shown: 0152364|134444|10.20.30.40|015236433 0233654|122555|10.20.30.50|023365433... (4 Replies)
Discussion started by: imas
4 Replies

3. Shell Programming and Scripting

counting the lines matching a pattern, in between two pattern, and generate a tab

Hi all, I'm looking for some help. I have a file (very long) that is organized like below: >Cluster 0 0 283nt, >01_FRYJ6ZM12HMXZS... at +/99% 1 279nt, >01_FRYJ6ZM12HN12A... at +/99% 2 281nt, >01_FRYJ6ZM12HM4TS... at +/99% 3 283nt, >01_FRYJ6ZM12HM946... at +/99% 4 279nt,... (4 Replies)
Discussion started by: d.chauliac
4 Replies

4. Shell Programming and Scripting

sed - matching pattern one but not pattern two

All, I have the following file: -------------------------------------- # # /etc/pam.d/common-password - password-related modules common to all services # # This file is included from other service-specific PAM config files, # and should contain a list of modules that define the services... (2 Replies)
Discussion started by: RobertBerrie
2 Replies

5. UNIX for Dummies Questions & Answers

Find pattern suffix matching pattern

Hi, I am trying to get a result out of this but fails please help. Have two files /tmp/1 & /tmp/hosts. /tmp/1 IP=123.456.789.01 WAS_HOSTNAME=abcdefgh.was.tb.dsdc /tmp/hosts 123.456.789.01 I want this result in /tmp/hosts if hostname is already there dont want duplicate entry. ... (5 Replies)
Discussion started by: rajeshwebspere
5 Replies

6. Shell Programming and Scripting

Sed: printing lines AFTER pattern matching EXCLUDING the line containing the pattern

'Hi I'm using the following code to extract the lines(and redirect them to a txt file) after the pattern match. But the output is inclusive of the line with pattern match. Which option is to be used to exclude the line containing the pattern? sed -n '/Conn.*User/,$p' > consumers.txt (11 Replies)
Discussion started by: essem
11 Replies

7. Shell Programming and Scripting

PHP - Regex for matching string containing pattern but without pattern itself

The sample file: dept1: user1,user2,user3 dept2: user4,user5,user6 dept3: user7,user8,user9 I want to match by '/^dept2.*/' but don't want to have substring 'dept2:' in output. How to compose such regex? (8 Replies)
Discussion started by: urello
8 Replies

8. UNIX for Dummies Questions & Answers

Grep -v lines starting with pattern 1 and not matching pattern 2

Hi all! Thanks for taking the time to view this! I want to grep out all lines of a file that starts with pattern 1 but also does not match with the second pattern. Example: Drink a soda Eat a banana Eat multiple bananas Drink an apple juice Eat an apple Eat multiple apples I... (8 Replies)
Discussion started by: demmel
8 Replies

9. Shell Programming and Scripting

Big pattern file matching within another pattern file in awk or shell

Hi I need to do a patten match between files . I am new to shell scripting and have come up with this so far. It take 50 seconds to process files of 2mb size . I need to tune this code as file size will be around 50mb and need to save time. Main issue is that I need to search the pattern from... (2 Replies)
Discussion started by: nitin_daharwal
2 Replies
RSSLite(3pm)						User Contributed Perl Documentation					      RSSLite(3pm)

NAME
XML::RSSLite - lightweight, "relaxed" RSS (and XML-ish) parser SYNOPSIS
use XML::RSSLite; . . . parseRSS(\%result, $content); print "=== Channel === ", "Title: $result{'title'} ", "Desc: $result{'description'} ", "Link: $result{'link'} "; foreach $item (@{$result{'item'}}) { print " --- Item --- ", " Title: $item->{'title'} ", " Desc: $item->{'description'} ", " Link: $item->{'link'} "; } DESCRIPTION
This module attempts to extract the maximum amount of content from available documents, and is less concerned with XML compliance than alternatives. Rather than rely on XML::Parser, it uses heuristics and good old-fashioned Perl regular expressions. It stores the data in a simple hash structure, and "aliases" certain tags so that when done, you can count on having the minimal data necessary for re-constructing a valid RSS file. This means you get the basic title, description, and link for a channel and its items. This module extracts more usable links by parsing "scriptingNews" and "weblog" formats in addition to RDF & RSS. It also "sanitizes" the output for best results. The munging includes: Remove html tags to leave plain text Remove characters other than 0-9~!@#$%^&*()-+=a-zA-Z[];',.:"<>?s Remove leading whitespace from URIs Use <url> tags when <link> is empty Use misplaced urls in <title> when <link> is empty Exract links from <a href=...> if required Limit links to ftp and http(s) Join relative item urls (beginning with / or #) to the site base EXPORT parseRSS($outHashRef, $inScalarRef) $inScalarRef is a reference to a scalar containing the document to be parsed, the contents will effectively be destroyed. $outHashRef is a reference to the hash within which to store the parsed content. EXPORTABLE parseXML(\%parsedTree, $parseThis, 'topTag', $comments); parsedTree - required Reference to hash to store the parsed document within. parseThis - required Reference to scalar containing the document to parse. topTag - optional Tag to consider the root node, leaving this undefined is not recommended. comments - optional false will remove contents from parseThis true will not remove comments from parseThis array reference is true, comments are stored here CAVEATS This is not a conforming parser. It does not handle the following o <foo bar=">"> o <foo><bar> <bar></bar> <bar></bar> </bar></foo> o <![CDATA[ ]]> o PI It's non-validating, without a DTD the following cannot be properly addressed entities namespaces This may or may not be arriving in some future release. SEE ALSO
perl(1), "XML::RSS", "XML::SAX::PurePerl", "XML::Parser::Lite", <XML::Parser> AUTHOR
Jerrad Pierce <jpierce@cpan.org>. Scott Thomason <scott@thomasons.org> LICENSE
Portions Copyright (c) 2002,2003,2009 Jerrad Pierce, (c) 2000 Scott Thomason. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-10-25 RSSLite(3pm)
All times are GMT -4. The time now is 10:28 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy