diff options
author | Jacob Pipkin <j@dawnrazor.net> | 2012-05-31 19:01:29 -0500 |
---|---|---|
committer | Jacob Pipkin <j@dawnrazor.net> | 2012-05-31 19:01:29 -0500 |
commit | 775844561ba2f7a45245fad772e08406426c9b7b (patch) | |
tree | 63025a8708ad15023c9ab408fc74fb252c588d32 /sboconfig | |
parent | 46bec27765bc522714634694db8b5a9113631b85 (diff) | |
download | sbotools2-775844561ba2f7a45245fad772e08406426c9b7b.tar.xz |
replace some for and if statements with their postscript forms
Diffstat (limited to 'sboconfig')
-rwxr-xr-x | sboconfig | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -50,9 +50,7 @@ show_version () and exit (0) if exists $options{v}; if (exists $options{l}) { my @keys = sort {$a cmp $b} keys %config; - for my $key (@keys) { - print "$key=$config{$key}\n"; - } + print "$_=$config{$_}\n" for @keys; exit 0; } |