D
Dan Jacobson
In the shell, I can do echo $a; : echo $b; echo $c
to turn off b with minimal disturbance to the one-liner.
In perl, one can't get away with just adding a ": ":
print $a; if(0){print $b}; print $c; #best I know
Is there a way less disruptive to this one-liner?
to turn off b with minimal disturbance to the one-liner.
In perl, one can't get away with just adding a ": ":
print $a; if(0){print $b}; print $c; #best I know
Is there a way less disruptive to this one-liner?