#!/bin/sh # # Configurador # TODO : esto lo debe modificar el instalador, no? INST_DIR="/home/gazer/prog/7508/inst" #Valida que exista el pais existe_pais () { EXISTE=`cat "$INST_DIR/oridesti.txt" | egrep "^$1;"`; if [ "$EXISTE" != "" ] ; then return 0 fi return 1 } echo -n "Ingreso código de país : " read pais if ! existe_pais $pais ; then echo "El pais no existe!!" fi