mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
13 lines
206 B
Bash
13 lines
206 B
Bash
#!/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
|