Sed: Difference between revisions
Jump to navigation
Jump to search
Anthoanthop (talk | contribs) No edit summary |
Anthoanthop (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
echo "pattern" | sed -e 's/.*WORD1//' -e 's/WORD2.*$//' | echo "pattern" | sed -e 's/.*WORD1//' -e 's/WORD2.*$//' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Example: | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> |
Revision as of 23:43, 20 April 2015
- Print a pattern between two (exclusive) words:
echo "pattern" | sed -e 's/.*WORD1//' -e 's/WORD2.*$//'
Example:
$ ./ovh-api-bash-client.sh --url "/ip/45.102.38.141"
200 {"organisationId":null,"country":"fr","routedTo":{"serviceName":"ns612429.ip-45-102-38.eu"},"ip":"45.102.38.141/32","canBeTerminated":true,"type":"failover","description":null}
We only want the routedTo information:
$ ./ovh-api-bash-client.sh --url "/ip/45.102.38.141" | sed -e 's/.*serviceName":"//' -e 's/"},"ip":.*$//'
ns612429.ip-45-102-38.eu