Next: Exportando variables
Up: El Bourne Shell
Previous: Creando/asignando variables
Cuando necesitamos leer el valor de una variable desde el teclado cuando
estamos ejecutando un script, el Bourne Shell dispone del comando:
-
- read {variable}+
Veamos un ejemplo:
width 3pt
width .3pt415pt$ cat nombre.script
echo -n "Entra tu nombre: "
read nombre
echo Tu nombre es: $nombre
$ nombre.script
Entra tu nombre: Pepe Pepon
Tu nombre es: Pepe Pepon
$
width .3pt
depth .3pt
width -3pt
Vicente González Ruiz
1998-07-13