# Common Command Line Shells

* There are a few available command line shells available in Linux.
* Not all shells are installed by default.
* SH is not BASH:
  * **Shell Command Language** is a programming language
  * **Bash** is one of the many implementations of the Shell Command Language
* Different built-in commands. Some commands are built into the shell itself (`cd`).

### [Bash](https://www.gnu.org/software/bash/manual/bash.html)

* Bourne-Again Shell - default on most systems
* Used for scripting and interactive purposes

### Ksh (Kornshell)

* Generally used to automate a wide variety of o.s. and sysadmin tasks

### [Zsh](https://www.zsh.org/)

* Interactive shell
* Incorporates many bash, tcsh, ksh features

### Csh/Tcsh

* ideal for learners of the C programming language

### [Fish](https://fishshell.com/)

* Friendly interactive shell

> 📌Get some hands on practice with shells:
>
> [Bash scripting cheatsheet](https://devhints.io/bash)
>
> [Learn Shell](https://www.learnshell.org/)
>
> Online Terminals:
>
> [JSLinux](https://bellard.org/jslinux/)
>
> [Copy.sh](https://copy.sh/v86/)
>
> [Webminal](https://www.webminal.org/) (free signup, practice)

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://blog.syselement.com/tcm/courses/linux-101/6-shells/shells.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
