From 25fdf919832369ad8289a2978288a29d1174bd9a Mon Sep 17 00:00:00 2001 From: Patrice Duroux Date: Thu, 5 Oct 2023 20:48:09 +0200 Subject: [PATCH] most likely a typo in the redirection (2>&1 and not 2&>1) This candidate was found using Debian Code Search using [12]?&>[12]. --- scripts/multi.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/multi.pl b/scripts/multi.pl index 2c2ced7..230e0f0 100755 --- a/scripts/multi.pl +++ b/scripts/multi.pl @@ -73,7 +73,7 @@ sub go { sigprocmask(SIG_UNBLOCK, $old_sig_set); system("zcat $rule{'file'} | " . - "ngrep -qtI - $rule{'regex'} $rule{'filter'} 2&>1 > " . + "ngrep -qtI - $rule{'regex'} $rule{'filter'} 2>&1 > " . "ngrepped.$rule_name"); exit;