- or download this
unless ($G)
{
...
die "$usage";
}
}
- or download this
if (!($P) && $shifted =~ /\w/)
{
...
{
die "$usage";
}
- or download this
foreach(sort keys %switches) {
${$_}= "$switches{$_}";
...
if ($switches{$_} eq '0') { print " (OFF)" if $D; }
print "\n" if $D;
}
- or download this
foreach(sort keys %switches) {
${$_}= "$switches{$_}";
...
print "\n";
}
}
- or download this
$G ?
( $extra = " ***GAPS***" )
...
( $H ? print "WIDTH\tCOUNT\tSPOON$extra\n" : 0 )
:
( $H ? print "WIDTH\tCOUNT$extra\n" : 0 );
- or download this
$extra =
$G
...
$S
? "WIDTH\tCOUNT\tSPOON$extra\n")
: "WIDTH\tCOUNT$extra\n";
- or download this
$S ? "$_\t$seen{$_}{count}\t$seen{$_}{spoon}\n" : print "$_\t$seen
+{$_}{count}\n";