PKGBUILDs/extra/antiword/antiword-helper

14 lines
206 B
Text
Raw Normal View History

2009-10-10 02:23:22 +00:00
#!/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