summaryrefslogtreecommitdiff
path: root/community/antiword/antiword-helper
diff options
context:
space:
mode:
Diffstat (limited to 'community/antiword/antiword-helper')
-rw-r--r--community/antiword/antiword-helper13
1 files changed, 0 insertions, 13 deletions
diff --git a/community/antiword/antiword-helper b/community/antiword/antiword-helper
deleted file mode 100644
index ee9fea627..000000000
--- a/community/antiword/antiword-helper
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-[ $# -eq 2 ] || exit 1
-
-tmpfile=/tmp/aw$$.txt
-editor=${EDITOR:-`which vi`}
-terminal="$2"
-
-antiword "$1" > $tmpfile
-chmod -w $tmpfile
-$terminal -e $editor $tmpfile
-chmod +w $tmpfile
-rm $tmpfile