Notices
Computer & Technology Related Post here for help and discussion of computing and related technology. Internet, TVs, phones, consoles, computers, tablets and any other gadgets.

Grep help required

Thread Tools
 
Search this Thread
 
Old 14 May 2004, 02:40 PM
  #1  
Markus
Scooby Regular
Thread Starter
 
Markus's Avatar
 
Join Date: Mar 1999
Location: The Great White North
Posts: 25,080
Likes: 0
Received 0 Likes on 0 Posts
Default Grep help required

ah, the joys of grep, it's really powerfull but I'm a muppet and can never really work it out, so, I'd like some help from any experts out there.

I've got an XML file (com.dock.apple.plist if you really must know), that has lots of data in it (funny that!)

Now, there are sections like this:
Code:
					<key>_CFURLAliasData</key>
					<data>
					AAAAAAFmAAIAAQxBcHBsaWNhdGlvbnMAAAAA
					AAAAAAAAAAAAAAC7/gcmSCsAAAAAAAIVSW50
					ZXJuZXQgRXhwbG9yZXIuYXBwAAAAAAAAAAAA
					AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
					AAAAAAAAAAB/bruyy+cAAAAAAAAAAP////8A
					AAkAAAAAAAAAAAAAAAAAAAAADEFwcGxpY2F0
					aW9ucwAQAAgAALv+TXYAAAARAAgAALuzBCcA
					AAABAAAAAgAiQXBwbGljYXRpb25zOkludGVy
					bmV0IEV4cGxvcmVyLmFwcAAOACwAFQBJAG4A
					dABlAHIAbgBlAHQAIABFAHgAcABsAG8AcgBl
					AHIALgBhAHAAcAAPABoADABBAHAAcABsAGkA
					YwBhAHQAaQBvAG4AcwASABYvSW50ZXJuZXQg
					RXhwbG9yZXIuYXBwABMADS9BcHBsaWNhdGlv
					bnMA//8AAA==
					</data>
What I want to do is to find these sections and remove them. I'm guessing I should be able to use grep to do this, start off looking for the <key> _CFURLAliasData item, and stop at the </data> bit. Am I correct? if so, then what is the grep pattern I need?

TIA
Old 15 May 2004, 12:13 AM
  #2  
GCollier
Scooby Regular
 
GCollier's Avatar
 
Join Date: Jun 1998
Posts: 1,198
Likes: 0
Received 0 Likes on 0 Posts
Default

You can do what you want easily using sed.

sed -e '/<key>/,/<\/data>/d' yourxmlfile.xml > newxmlfile.xml

should do the trick.
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
Abx
Subaru
22
09 January 2016 05:42 PM
gazzawrx
Non Car Related Items For sale
13
17 October 2015 06:51 PM
FuZzBoM
Wheels, Tyres & Brakes
16
04 October 2015 09:49 PM
buckerz69
Wanted
2
03 October 2015 09:54 PM
Pro-Line Motorsport
Car Parts For Sale
2
29 September 2015 07:36 PM



Quick Reply: Grep help required



All times are GMT +1. The time now is 10:09 AM.