From dc2163eebb802dae4898fd4765752ef1aa76d07e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A0=CE=B1=CE=BB=CE=B1=CE=B9=CE=BF=CE=BB=CF=8C=CE=B3?= =?UTF-8?q?=CE=BF=CF=82?= Date: Wed, 2 Oct 2019 17:06:35 +0200 Subject: [PATCH] Create strip.pl --- strip.pl | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 strip.pl diff --git a/strip.pl b/strip.pl new file mode 100644 index 00000000..bfea433a --- /dev/null +++ b/strip.pl @@ -0,0 +1,10 @@ +#!/usr/bin/perl + +$_ = do { local $/; <> }; +s/[\n\r\t ]+//g; +s/<>//g; +s/>\[\]\,\.]+//g; +print;