]> git.llucax.com Git - z.facultad/75.08/llamadas.git/blobdiff - inst/util.sh
agrego un comando para lanzar, parar o consultar el estado del afimonio.
[z.facultad/75.08/llamadas.git] / inst / util.sh
index 1d9219ceceaeb127cf01c3229e3d240caac067c4..136ab7ce3208fc6c33f51111c196d585fda8b18c 100755 (executable)
@@ -1,5 +1,10 @@
 #/bin/sh
 
+## Los scrips que incluyan deben definir BASE_DIR antes de incluirme!
+#BASE_DIR="$PWD"
+
+LOCK_DIR="$BASE_DIR/lock"
+
 # Lee del teclado un valor
 #
 # parĂ¡metros :
@@ -32,6 +37,10 @@ preguntar () {
        OPCIONES=$2
        while [ true ] ; do
                read -p "$PREGUNTA [$OPCIONES]: " RTA
+
+               # Escapeo el caracter '-' por '\-'
+               RTA=$(echo $RTA | sed "s/\-/\\\-/")
+
                IS_OK=`echo "$OPCIONES" | grep "$RTA"`
                if [ ! -z "$IS_OK" ] && [ ! -z "$RTA" ] ; then
                        eval "$3=$RTA"
@@ -57,18 +66,18 @@ lock () {
                echo "No"
                return
        fi
-       echo "lero lero" > "$INST_DIR/lock/$1.pid"
+       echo "$$" > "$LOCK_DIR/$1.pid"
 }
 
 # Desbloquea el script
 unlock () {
-       rm -rf "$INST_DIR/lock/$1.pid"
+       rm -rf "$LOCK_DIR/$1.pid"
 }
                        
 
 # Consulta si un script esta lockeado
 is_lock () {
-       if [ -e "$INST_DIR/lock/$1.pid" ] ; then
+       if [ -e "$LOCK_DIR/$1.pid" ] ; then
                # Lock file encontrado!
                return 0
        fi