> 
> Is qw for holding list of data and qx is for running 
> commands? Do they both indicate a list context? Thanks, John

 perldoc -f qq
 perlop "Regexp Quote-Like Operators"

 my @stuff = qw(hi bye joe mama);
 my @cmdln = qx(cat monkey.txt| grep fred);
 my $cmdln = qx(cat monkey.txt| grep fred);
 print qq(I said "Foo you bar" and they were like "no way");

HTH

DMuey
> 
> 
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to