/usr/bin/apertium-unformat is in apertium 3.1.0-2.
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 | #!/bin/bash
APERTIUM_PATH="/usr/bin"
LTTOOLBOX_PATH="/usr/bin"
DEFAULT_DIRECTORY="/usr/share/apertium"
PAIR=""
INPUT_FILE="/dev/stdin"
OUTPUT_FILE="/dev/stdout"
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
}
unformat_odt ()
{
INPUT_TMPDIR=/tmp/$$odtdir
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=/tmp/$$docxdir
locale_utf8
test_zip
unzip -q -o -d $INPUT_TMPDIR $FICHERO
for i in $(find $INPUT_TMPDIR|grep "xlsx$");
do $APERTIUM_PATH/apertium -f xlsx -d $DIRECTORY $OPCIONU $PREFIJO <$i >/tmp/$$xlsxembed;
mv /tmp/$$xlsxembed $i;
done;
find $INPUT_TMPDIR | grep "xml" |\
grep -v -i \\\(settings\\\|theme\\\|styles\\\|font\\\|rels\\\) |\
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=/tmp/$$docxdir
locale_utf8
test_zip
unzip -q -o -d $INPUT_TMPDIR $FICHERO
for i in $(find $INPUT_TMPDIR|grep "xlsx$");
do $APERTIUM_PATH/apertium -f xlsx -d $DIRECTORY $OPCIONU $PREFIJO <$i >/tmp/$$xlsxembed;
mv /tmp/$$xlsxembed $i;
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=/tmp/$$xlsxdir
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
;;
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
|