Installer: Early check whether the installation directory is writable
[msysgit.git] / bin / astextplain
blob0f4479ab805b09c09cbb5fad4c3da0952d99319b
1 #!/bin/sh -e
2 # minimalistic replacement for `run-mailcap --action=cat <file>`
4 if test "$#" != 1 ; then
5 echo "Usage: astextplain <file>" 1>&2
6 exit 1
7 fi
9 # XXX output encoding (UTF-8) hardcoded
10 case "$1" in
11 *.doc | *.DOC | *.dot | *.DOT)
12 antiword -m UTF-8 "$1" || cat "$1"
14 *.pdf | *.PDF)
15 pdftotext -layout "$1" -enc UTF-8 -
17 # TODO add rtf support
18 *.rtf | *.RTF)
19 cat "$1"
22 echo "E: unsupported filetype $1" 1>&2
23 exit 1
25 esac
27 exit 0