Re: [OE-core] [PATCH 1/1] runqemu: replace bashism with working shell idiom

2012-05-14 Thread Scott Garman
On 05/14/2012 03:49 PM, Peter Seebach wrote: The =~ operator is not one of my favorites, not just due to portability issues, but because it's not well known, and a lot of people might not expect a regex operator. The canonical shell idiom for this is to use case with alternation and wildcards.

[OE-core] [PATCH 1/1] runqemu: replace bashism with working shell idiom

2012-05-14 Thread Peter Seebach
The =~ operator is not one of my favorites, not just due to portability issues, but because it's not well known, and a lot of people might not expect a regex operator. The canonical shell idiom for this is to use case with alternation and wildcards. As a side note, if you are matching anything co