aboutsummaryrefslogtreecommitdiff
path: root/sboconfig
diff options
context:
space:
mode:
authorJacob Pipkin <j@dawnrazor.net>2012-05-31 19:01:29 -0500
committerJacob Pipkin <j@dawnrazor.net>2012-05-31 19:01:29 -0500
commit775844561ba2f7a45245fad772e08406426c9b7b (patch)
tree63025a8708ad15023c9ab408fc74fb252c588d32 /sboconfig
parent46bec27765bc522714634694db8b5a9113631b85 (diff)
downloadsbotools2-775844561ba2f7a45245fad772e08406426c9b7b.tar.xz
replace some for and if statements with their postscript forms
Diffstat (limited to 'sboconfig')
-rwxr-xr-xsboconfig4
1 files changed, 1 insertions, 3 deletions
diff --git a/sboconfig b/sboconfig
index beaa719..63f1d51 100755
--- a/sboconfig
+++ b/sboconfig
@@ -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;
}