aboutsummaryrefslogtreecommitdiffstats
path: root/.mutt/ppt2text.sh
diff options
context:
space:
mode:
Diffstat (limited to '.mutt/ppt2text.sh')
-rwxr-xr-x.mutt/ppt2text.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/.mutt/ppt2text.sh b/.mutt/ppt2text.sh
deleted file mode 100755
index 43d22f4..0000000
--- a/.mutt/ppt2text.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# ppt2text - convert MS PowerPoint files to ASCII text
-#
-# Written by Gary Johnson <garyjohn@spk.agilent.com>.
-#
-# Modification History:
-# 2003-02-19
-# Changed the name pptHtml to ppthtml to match the xlhtml-0.5
-# release.
-
-prog=${0##*/}
-
-if [ $# -ne 1 ]
-then
- echo "Usage: $prog file" >&2
- exit 2
-fi
-
-ppthtml $1 |
-w3m -dump -T text/html |
-perl -pe 's/\xa0/ /g' # Change A0 spaces to ASCII
- # spaces.