How to extract a text part by regexp in linux shell? Lets say, I have file where in every line is an IP address, but in different position. What is the most simple way to extract those IP addresses using common unix command-line tools?
|
|
|
|
|
|
|
You could use grep to pull them out.
|
||||||||||
|
|
|
Most of the examples here will match on 999.999.999.999 which is not technically a valid IP address. The following will match on only valid IP addresses (including network and broadcast addresses).
Omit the -o if you want to see the entire line that matched. |
||
|
|
|
|
I usually start with grep, to get the regexp right.
Then I'd try and convert it to
That's when I usually get annoyed with
Perl's good to know in any case. If you've got a teeny bit of CPAN installed, you can even make it more reliable at little cost:
|
||
|
|
|
|
You could use awk, as well. Something like ... awk '{i=1; if (NF > 0) do {if ($i ~ /regexp/) print $i; i++;} while (i <= NF);}' file -- may need cleaning. just a quick and dirty response to show basically how to do it with awk |
||||
|
|
|
You can use sed. But if you know perl, that might be easier, and more useful to know in the long run:
|
||
|
|
|
|
I'd suggest perl. (\d+.\d+.\d+.\d+) should probably do the trick. EDIT: Just to make it more like a complete program, you could do something like the following (not tested):
This handles one IP per line. If you have more than one IPs per line, you need to use the /g option. man perlretut gives you a more detailed tutorial on regular expressions. |
||||
|
