#!/usr/bin/perl -w use strict; use warnings; use utf8; use open qw(:std :utf8); use integer; use Unicode::Normalize; # Filter_4_00_Schummelskript.pl # 2010-04-23 # Wolfgang Schmidle # what does it do? # input # output # text input my @text; while(<>) { push @text, $_; } # go through the text foreach (@text) { s!
!!; s!
!!; s!
!!; s!
!
!; s!^])!!

!g; # s!]!!; } # text output print @text; # TO DO: # ...