From 576eb7afbd9ffde2b8d4ed11ed6be155e36d1676 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Mon, 22 Jun 2026 19:05:02 +0200 Subject: [PATCH] bin/csv2human --- bin/csv2human | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/csv2human b/bin/csv2human index ba2185c3..a1fcf3e9 100755 --- a/bin/csv2human +++ b/bin/csv2human @@ -51,7 +51,7 @@ eval { # ------------------- read input -------------------------- my @rows; -while () { +while (<>) { chomp; next unless length; my @fields = split /$Opt{sep}/; # tab‑separated -- 2.47.3