Subject: | Mention how to make one line block candidates become one line |
Sorry, on the man page I can't find the switch that turns
if ( $? == -1 ) {
die "failed to execute: $!\n";
}
into
if ( $? == -1 ) { die "failed to execute: $!\n"; }
while leaving multi-liners,
if ( $? == -1 ) {
print "Had enough.\n";
die "failed to execute: $!\n";
}
alone.
(Yes, subject to line length restrictions. But at least make it work for
the short lines above.)
(Maybe there is no example given and its control is merely described,
thus hard to find on the man page.)
Looked for half an hour. Lots of similar things, tried them, not what I
want.