/usr/bin/apertium-unformat is in apertium 3.4.0~r61013-5+b1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | #!/bin/bash
APERTIUM_PATH="/usr/bin"
LTTOOLBOX_PATH="/usr/bin"
DEFAULT_DIRECTORY="/usr/share/apertium"
PAIR=""
INPUT_FILE="/dev/stdin"
OUTPUT_FILE="/dev/stdout"
[ -z "$TMPDIR" ] && TMPDIR=/tmp
message ()
{
echo "USAGE: $(basename $0) [-f format] [in [out]]"
echo " -f format one of: txt (default), html, rtf, odt, docx, wxml, xlsx, pptx"
echo " in input file (stdin by default)"
echo " out output file (stdout by default)"
exit 1;
}
locale_utf8 ()
{
export LC_CTYPE=$(locale -a|grep -i "utf[.]*8"|head -1);
if [ "$LC_CTYPE" = "" ]
then echo "Error: Install an UTF-8 locale in your system";
exit 1;
fi
}
test_zip ()
{
if [ "$(which zip)" = "" ]
then echo "Error: Install 'zip' command in your system";
exit 1;
fi
if [ "$(which unzip)" = "" ]
then echo "Error: Install 'unzip' command in your system";
exit 1;
fi
}
test_gawk ()
{
GAWK=$(which gawk)
if [ "$GAWK" = "" ]
then echo "Error: Install 'gawk' in your system"
exit 1
fi
}
unformat_latex()
{
test_gawk
if [ "$FICHERO" = "" ]
then FICHERO=$(mktemp $TMPDIR/apertium.XXXXXXXX)
cat > $FICHERO
BORRAFICHERO="true"
fi
$APERTIUM_PATH/apertium-prelatex $FICHERO | \
$APERTIUM_PATH/apertium-utils-fixlatex | \
$APERTIUM_PATH/apertium-deslatex >$SALIDA
if [ "$BORRAFICHERO" = "true" ]
then rm -Rf $FICHERO
fi
}
unformat_odt ()
{
INPUT_TMPDIR=$(mktemp -d $TMPDIR/apertium.XXXXXXXX)
locale_utf8
test_zip
unzip -q -o -d $INPUT_TMPDIR $FICHERO
find $INPUT_TMPDIR | grep content\\\.xml |\
awk '{printf "<file name=\"" $0 "\"/>"; PART = $0; while(getline < PART) printf(" %s", $0); printf("\n");}' |\
$APERTIUM_PATH/apertium-desodt >$SALIDA
rm -Rf $INPUT_TMPDIR
}
unformat_docx ()
{
INPUT_TMPDIR=$(mktemp -d $TMPDIR/apertium.XXXXXXXX)
locale_utf8
test_zip
unzip -q -o -d $INPUT_TMPDIR $FICHERO
for i in $(find $INPUT_TMPDIR|grep "xlsx$");
do LOCALTEMP=$(mktemp $TMPDIR/apertium.XXXXXXXX)
$APERTIUM_PATH/apertium -f xlsx -d $DIRECTORY $OPCIONU $PREFIJO <$i >$LOCALTEMP;
cp $LOCALTEMP $i;
rm $LOCALTEMP;
done;
find $INPUT_TMPDIR | grep "xml" |\
grep -v -i \\\(settings\\\|theme\\\|styles\\\|font\\\|rels\\\|docProps\\\) |\
awk '{printf "<file name=\"" $0 "\"/>"; PART = $0; while(getline < PART) printf(" %s", $0); printf("\n");}' |\
$APERTIUM_PATH/apertium-deswxml >$SALIDA
rm -Rf $INPUT_TMPDIR
}
unformat_pptx ()
{
INPUT_TMPDIR=$(mktemp -d $TMPDIR/apertium.XXXXXXXX)
locale_utf8
test_zip
unzip -q -o -d $INPUT_TMPDIR $FICHERO
for i in $(find $INPUT_TMPDIR|grep "xlsx$");
do LOCALTEMP=$(mktemp $TMPDIR/apertium.XXXXXXXX)
$APERTIUM_PATH/apertium -f xlsx -d $DIRECTORY $OPCIONU $PREFIJO <$i >$LOCALTEMP
cp $LOCALTEMP $i
rm $LOCALTEMP
done;
find $INPUT_TMPDIR | grep "xml$" |\
grep "slides\/slide" |\
awk '{printf "<file name=\"" $0 "\"/>"; PART = $0; while(getline < PART) printf(" %s", $0); printf("\n");}' |\
$APERTIUM_PATH/apertium-despptx >$SALIDA
rm -Rf $INPUT_TMPDIR
}
unformat_xlsx ()
{
INPUT_TMPDIR=$(mktemp -d $TMPDIR/apertium.XXXXXXXX)
locale_utf8
test_zip
unzip -q -o -d $INPUT_TMPDIR $FICHERO
find $INPUT_TMPDIR | grep "sharedStrings.xml" |\
awk '{printf "<file name=\"" $0 "\"/>"; PART = $0; while(getline < PART) printf(" %s", $0); printf("\n");}' |\
$APERTIUM_PATH/apertium-desxlsx >$SALIDA
rm -Rf $INPUT_TMPDIR
}
ARGS=$(getopt "f:" $*)
set -- $ARGS
for i
do
case "$i" in
-f) shift; FORMAT=$1; shift;;
--) shift; break;;
esac
done
case "$#" in
2)
OUTPUT_FILE=$2;
INPUT_FILE=$1;
if [ ! -e $INPUT_FILE ];
then echo "Error: file '$INPUT_FILE' not found."
message;
fi
;;
1)
INPUT_FILE=$1;
if [ ! -e $INPUT_FILE ];
then echo "Error: file '$INPUT_FILE' not found."
message;
fi
;;
0)
;;
*)
message
;;
esac
if [ x$FORMAT = x ]; then FORMAT="txt"; fi
FORMATADOR=$FORMAT;
FICHERO=$INPUT_FILE;
SALIDA=$OUTPUT_FILE;
case "$FORMATADOR" in
rtf)
MILOCALE=$(locale -a|grep -i -v "utf\|^C$\|^POSIX$"|head -1);
if [ "$MILOCALE" = "" ]
then echo "Error: Install a ISO-8859-1 compatible locale in your system";
exit 1;
fi
export LC_CTYPE=$MILOCALE
;;
html-noent)
FORMATADOR="html"
;;
latex)
unformat_latex
exit 0
;;
odt)
unformat_odt
exit 0
;;
docx)
unformat_docx
exit 0
;;
xlsx)
unformat_xlsx
exit 0
;;
pptx)
unformat_pptx
exit 0
;;
wxml)
locale_utf8
;;
*)
;;
esac
$APERTIUM_PATH/apertium-des$FORMATADOR $FICHERO >$SALIDA
|