aboutsummaryrefslogtreecommitdiff
path: root/sbofind
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 /sbofind
parent46bec27765bc522714634694db8b5a9113631b85 (diff)
downloadsbotools2-775844561ba2f7a45245fad772e08406426c9b7b.tar.xz
replace some for and if statements with their postscript forms
Diffstat (limited to 'sbofind')
-rwxr-xr-xsbofind4
1 files changed, 1 insertions, 3 deletions
diff --git a/sbofind b/sbofind
index e32d940..3bae022 100755
--- a/sbofind
+++ b/sbofind
@@ -96,9 +96,7 @@ if (exists $findings[0]) {
push (@listing, "\n");
}
}
- for my $list (@listing) {
- print $list;
- }
+ print $_ for @listing;
} else {
print "Nothing found for search term: $search\n";
}