From 7a65a910b77ad191d69881098c47f9b0c852d92e Mon Sep 17 00:00:00 2001 From: root Date: Tue, 13 Aug 2013 01:33:19 -0700 Subject: Tue Aug 13 01:31:08 PDT 2013 --- community/antiword/antiword-helper | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 community/antiword/antiword-helper (limited to 'community/antiword/antiword-helper') diff --git a/community/antiword/antiword-helper b/community/antiword/antiword-helper new file mode 100644 index 000000000..ee9fea627 --- /dev/null +++ b/community/antiword/antiword-helper @@ -0,0 +1,13 @@ +#!/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 -- cgit v1.2.3-54-g00ecf