<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#0050d0">
I think this is the sed you want<br>
sed -e 's/\(\([[:digit:]]\{1,3\}\.\)\{3\}[[:digit:]]\{1,3\}\).*/\1/'<br>
<br>
<br>
-------- Original Message&nbsp; --------<br>
Subject: Re: [clue-tech] Re: regex smarties - what am I doing wrong?<br>
From: David L. Willson <a class="moz-txt-link-rfc2396E" href="mailto:DLWillson@TheGeek.NU">&lt;DLWillson@TheGeek.NU&gt;</a><br>
To: <a class="moz-txt-link-abbreviated" href="mailto:mhavlicek1@yahoo.com">mhavlicek1@yahoo.com</a>, CLUE tech <a class="moz-txt-link-rfc2396E" href="mailto:clue-tech@cluedenver.org">&lt;clue-tech@cluedenver.org&gt;</a><br>
Date: Wednesday, September 03, 2008 3:10:22 PM<br>
<blockquote cite="mid:20080903205946.M38799@TheGeek.NU" type="cite">
  <pre wrap="">$ grep newwave hosts | sed -e 's/(([[:digit:]]{1,3}\.){3}[[:digit:]]{1,3})/\1/p'
sed: -e expression #1, char 48: invalid reference \1 on `s' command's RHS
------------------------------
Mike: Does escaping the open and closed parenths help?
------------------------------
Surprise to me, yes, it does.  I don't get the error any more.  But I also don't get
just the IP address, I get the whole line...  &lt;mumble&gt;

What I'm trying to do is to grep a trashy list of names, nicknames, aliases, and IP
addresses for (something), and in the case of a unique hit, return the IP address only,
and an error of either "not found" or "not found uniquely" in the appropriate other cases.

The first step, where I currently am stuck, is how to return only the IP address, rather
than the whole line.  The rest should be a doddle. (remember Lemmings?)

I'll keep trying and let you know if I figure it out.
_______________________________________________
clue-tech mailing list
<a class="moz-txt-link-abbreviated" href="mailto:clue-tech@cluedenver.org">clue-tech@cluedenver.org</a>
<a class="moz-txt-link-freetext" href="http://www.cluedenver.org/mailman/listinfo/clue-tech">http://www.cluedenver.org/mailman/listinfo/clue-tech</a>
  </pre>
</blockquote>
<br>
<br>
</body>
</html>