3 # Lee del teclado un valor
6 # $1 = Leyeda a mostrar de pregunta
7 # $2 = Valor default por si el usuario no ingresa nada
8 # $3 = Variable donde guardar el valor ingresado (o el default)
13 read -p "$MSG [$DEFAULT] : " ALGO
14 # Si el usuario no ingresa nada
15 # nos quedamos con el valor default
16 if [ ! -z "$ALGO" ] ; then
23 # Realiza una pregunta al usuario
26 # $1 = Leyeda a mostrar de preguntar
27 # $2 = string con las opciones validas
28 # $3 = Variable donde guardar el valor ingresado
34 read -p "$PREGUNTA : " RTA
35 IS_OK=`echo "$OPCIONES" | grep "$RTA"`
36 if [ ! -z "$IS_OK" ] && [ ! -z "$RTA" ] ; then
43 #leer "Ingrese un directorio" "/tmp" ALGO
45 #echo "Ingresaste : $ALGO"
48 #preguntar "Sos hombre (s/n)" "sn" OPT
50 #if [ "$OPT" == "s" ] ; then
51 # echo "Sos un mentiroso!!!"
53 # echo "Jaja ... Trola!"
57 #preguntar "Que preferis (drogas/cafe/vino/coca cola)" "drogas cafe vino \"coca cola\"" OPT
59 #echo "Vos decidis : $OPT"