Skip to content

Commit

Permalink
getter usage example
Browse files Browse the repository at this point in the history
  • Loading branch information
dpavlin committed Feb 7, 2012
1 parent a21934c commit 974345e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ZPL2pbm.pl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
$command->{$cmd} = $desc;
}

my $file = shift @ARGV || die "usage: $0 dump.zpl > dump.pbm";
my $file = shift @ARGV || die "usage: $0 dump.zpl > dump.pbm\n";

open(my $in, '<', $file);

Expand Down
2 changes: 1 addition & 1 deletion pbm2ZPL.pl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

my $compress = $ENV{COMPRESS} || 1;

my $pnm_file = shift @ARGV || die "usage: $0 print.pnm";
my $pnm_file = shift @ARGV || die "usage: $0 print.pnm > print.zpl\n";

open(my $fh, '<', $pnm_file);
my $p4 = <$fh>; chomp $p4;
Expand Down

0 comments on commit 974345e

Please sign in to comment.