From 7fe9f6020569cfc33bf0affc808278cad5f6d777 Mon Sep 17 00:00:00 2001 From: Ken Fallon Date: Thu, 16 Jan 2025 22:05:35 +0100 Subject: [PATCH] The show processing needs to be refactored #5 --- workflow/remove-image.pl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 workflow/remove-image.pl diff --git a/workflow/remove-image.pl b/workflow/remove-image.pl new file mode 100755 index 0000000..10cf337 --- /dev/null +++ b/workflow/remove-image.pl @@ -0,0 +1,12 @@ +#!/usr/bin/env perl + +use strict; + +while (<>) { + s/(/g; + print; +} + +exit +#