#!/bin/sh ORIGINAL_QCV="/usr/share/abiword-2.8/strings/qcv-ES.strings" ORIGINAL_ES="/usr/share/abiword-2.8/strings/es-ES.strings" if [ ! -e "$ORIGINAL_ES" ] ; then echo "Not exists, es-ES.strings" exit 0 fi # If file not exists, then link it! if [ ! -e "$ORIGINAL_QCV" ] ; then ln -s "$ORIGINAL_ES" "$ORIGINAL_QCV" fi exit 0