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