commit b458d1aa4a5cb916e7d8ce222c15f6bafd19b5f2 from: Omar Polo date: Sat Jun 17 13:10:34 2023 UTC use foreach instead of map to print the matching entries from volker' plage.pl commit - 6b4b0a36a5899117de558c34f68cf2ab456d6db2 commit + b458d1aa4a5cb916e7d8ce222c15f6bafd19b5f2 blob - ed88e48ba660bb1c4c0084237d405274c3081636 blob + 65466142a76bf04d1db66457268f194dc18f39c4 --- plass +++ plass @@ -220,7 +220,7 @@ sub cmd_find { GetOptions('h|?' => \&usage) or usage; usage if @ARGV > 1; - map { say $_ } passfind(shift @ARGV); + say $_ foreach passfind(shift @ARGV); } # TODO: handle moving directories?