Bash: how to extract a regular expression from a string

How to do things, solutions, recipes, tutorials
Post Reply
Message
Author
User avatar
vootie
Posts: 92
Joined: Mon 29 Sep 2008, 09:22

#16 Post by vootie »

Amigo, a correction for the first item in that table, where it says:

Code: Select all

grep         case
 .           ? 
And means "match a string of one (or more) chars", the conversion should be:

Code: Select all

grep         case
 .           *?* 

Post Reply