commit 1059e91b681172044c1b511ae85d2f0e4f252f7a from: Caleb Stein date: Mon May 4 05:41:56 2026 UTC make loop more concise commit - 8400f38c8ccbac841e8d563a1449a93c7aadc984 commit + 1059e91b681172044c1b511ae85d2f0e4f252f7a blob - fcd02734a810363b5689f02eb898d9e7a805711f blob + c95ca374df9724205f5a1cb33001742175e55e67 --- maillink.pl +++ maillink.pl @@ -9,7 +9,7 @@ while (<$fh>) { next if ($. != $line); - print $_; + print; last; } close($fh);