diff options
| author | Paul Buetow <paul@buetow.org> | 2008-08-07 22:53:15 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-08-07 22:53:15 +0000 |
| commit | 950ee1daa8daa23a7284046ffac8ca8c478848da (patch) | |
| tree | 6a8c619b597ed3c06514803ac78fb46b971e9e4b | |
| parent | 35e3bca5989558441813f49f359cc5d9a83e96c3 (diff) | |
ok
| -rw-r--r-- | scripts/pdf2txtrmcr.pl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/pdf2txtrmcr.pl b/scripts/pdf2txtrmcr.pl new file mode 100644 index 0000000..5ffb05d --- /dev/null +++ b/scripts/pdf2txtrmcr.pl @@ -0,0 +1,12 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +for (<DATA>) { + chomp if /[a-z]/; + print; +} + +__DATA__ + |
