miércoles, 9 de mayo de 2012

Shell

echo $SHELL

  • Un shell es un interprete de comandos, es decir, el shell lee comandos del teclado y los ejecuta.  


  • A number of important shells have appeared over time
     




Hint: Ubuntu makes /bin/sh a symlink to /bin/dash.

Programming Languages  >> http://hyperpolyglot.org/ 

$VAR y ${VAR}

#!/bin/sh
INGREDIENTE=azucar
echo Hay pan $INGREDIENTEado
echo Hay pan ${INGREDIENTE}ado

No hay comentarios:

Publicar un comentario