in reply to Formatting Long String in Backticks

Something like this ?
my $test = q! testing testing ! . q! ... testing testing !; my $cmd = `$test`;

Replies are listed 'Best First'.
Re^2: Formatting Long String in Backticks
by toolic (Bishop) on Mar 09, 2010 at 23:53 UTC
    Keep in mind that q!! will not interpolate, but qx!! will. This is importatnt if testing actually contains variables.