From 7c72e9b9b2d200a4ff7914c88cd6652211cd6133 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Mon, 12 Jul 2021 13:27:21 +0200 Subject: Remove each I wasn't entirely happy with it. --- each | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 each (limited to 'each') diff --git a/each b/each deleted file mode 100755 index b1e5727..0000000 --- a/each +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl - -$i = 0; -for (@ARGV) { - if (/^;$/) { $command .= '; '; next; } - if (/^&&$/) { $command .= '&& '; next; } - if (/^\|\|$/) { $command .= '|| '; next; } - if (/^\|$/) { $command .= '| '; next; } - s/"/"'"'"/g; - s/\$/\\\$/g; - s/\\\$\+/\$/g; - $command .= "\"$_\" " -} - -while () { - chomp($ENV{x} = $_); - system($command); -} -- cgit v1.2.3