From 775844561ba2f7a45245fad772e08406426c9b7b Mon Sep 17 00:00:00 2001 From: Jacob Pipkin Date: Thu, 31 May 2012 19:01:29 -0500 Subject: replace some for and if statements with their postscript forms --- sbofind | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sbofind') 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"; } -- cgit v1.2.3