First page Back Continue Last page Overview Image

THE SHELL

A text shell in a (terminal):

HERE YOU TIPE SOMETHING THAT LAUNCHES

COMMANDS

A graphic shell:

HERE YOU CLICK ON THINGS &

THAT STARTS COMMANDS

The shell is an interpreter program. It takes one expression, check its meaning and if possible, it executes it.

The shell, the UNIX OS and many application programs are “compiled”. That means all expressions are checked, translated into machine language and linked in an organized package, which you launch as an application.

The text shell BASH is itself a compiled application stored in the disk.

You can call it by typing its name at the bash shell!!!

>bash

What!


Notes:

EL SHELL es un intérprete, cada instrucción es ejecutada y se informa al usuario del resultado.

Hay dos clases de SHELL:

De texto. Interpretan comandos que el usuario escribe en el teclado o que están en un “script”.

Gráficos. Ejecutan instrucciones dadas por una combinación de clics de ratón (y/o joystic, trackpad etc.) y líneas de texto.

Una secuencia de comandos se llama SCRIPT y puede grabarse en un archivo, que puede ser llamado a conveniencia del usuario.