2023-07-05 11:06:16 +02:00
|
|
|
# Shell
|
|
|
|
|
|
|
|
On UNIX(r), the shell is the main interaction tool between the
|
2024-03-30 20:09:26 +01:00
|
|
|
user-level and the system. That doesn't necessarily mean the user
|
2024-03-30 19:22:45 +01:00
|
|
|
always sits infront of a shell, but it's integral part of the system,
|
2023-07-05 11:06:16 +02:00
|
|
|
not only an \"optional commandline interpreter\".
|
|
|
|
|
|
|
|
The main job of a shell is to execute commands as a user requests them.
|
2024-03-30 20:09:26 +01:00
|
|
|
This behaviour alone doesn't help much. A shell knits some intelligence
|
2024-03-30 19:22:45 +01:00
|
|
|
and flow control around the possibility to execute commands - it's a
|
2023-07-05 11:06:16 +02:00
|
|
|
complete commandline-oriented user-interface (UI).
|
|
|
|
|
2024-10-08 06:00:17 +02:00
|
|
|
!!! warning "FIXME"
|
|
|
|
tbd.
|
2023-07-05 11:06:16 +02:00
|
|
|
|
|
|
|
## See also
|
|
|
|
|
|
|
|
## See also (external)
|
|
|
|
|
|
|
|
- Wikipedia: [UNIX shell](http://en.wikipedia.org/wiki/Unix_shell)
|