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 /sbofind | |
| parent | 46bec27765bc522714634694db8b5a9113631b85 (diff) | |
| download | sbotools2-775844561ba2f7a45245fad772e08406426c9b7b.tar.xz | |
replace some for and if statements with their postscript forms
Diffstat (limited to 'sbofind')
| -rwxr-xr-x | sbofind | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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"; } |
