6 # TODO Sacar esto cuando termine de probar
7 #trap "echo ; echo 'No use CTRL+C para salir. Tome la opción 4 en el menú.' ; echo" INT
9 # TODO : esto lo debe modificar el instalador, no?
10 INST_DIR="/home/gazer/prog/7508/inst"
12 . "/$INST_DIR/util.sh"
14 #Valida que exista el pais
16 EXISTE=`cat "$INST_DIR/oridesti.txt" | egrep "^$1;"`;
17 if [ "$EXISTE" != "" ] ; then
32 preguntar "Su opción" "1234" $1
37 while [ $DONE == 0 ] ; do
38 leer "Número de línea" "" LINEA
40 if ! validar_solo_numeros "$LINEA" ; then
41 echo "EL NUMERO TE LINEA SOLO DEBE TENER DIGITOS"
45 if [ "$LINEA" == "" ] ; then
50 preguntar "Tipo de llamada" "ES" TIPO
53 while [ $DONE == 0 ] ; do
54 leer "Origen (código de 2 letras)" "" ORIGEN
55 if ! existe_pais "$ORIGEN" ; then
56 echo "No existe el país de código $ORIGEN"
60 if [ "$ORIGEN" == "" ] ; then
66 while [ $DONE == 0 ] ; do
67 leer "Destino (código de 2 letras)" "" DESTINO
68 if ! existe_pais "$DESTINO" ; then
69 echo "No existe el país de código $DESTINO"
73 if [ "$DESTINO" == "" ] ; then
84 Tipo de llamada : $TIPO
91 while [ "$OPT" != "4" ] ; do