On Sat, Feb 10, 2007 at 09:16:06AM -0500, Joe Gottman wrote:
: Does the interpolating version of qw split a string into words before or 
: after it interpolates?  So if I have
:   my $foo = 'Hello World';
:    my @bar = «$foo»;
: 
: does @bar equal ('Hello World') or ('Hello', 'World')?

The latter, just like shell quoting.  Also just like shell quoting, you can
say my @bar = «"$foo" bar» to prevent the splitting of that interpolation.

Hmm, we very nearly have:

    run «find "$dir" @options» ==> run «xargs rm -f»

Larry

Reply via email to