Command Interpreter
The shell reads commands entered by the user and executes them through the operating system.
Shell Script · Lesson
Shell Scripting · Lesson 2
components/shell/ShellLessons.jsA shell is a command-line interface that allows users to interact with the Linux operating system. It acts as a bridge between the user and the kernel.
When you type a command, the shell interprets it and requests the kernel to perform the required action such as running a program, managing files, or controlling processes.
The shell reads commands entered by the user and executes them through the operating system.
It connects users with the Linux kernel without requiring direct system access.
Shells allow automation using scripts to perform repetitive tasks efficiently.
Open your terminal and start interacting with the system.
Use basic commands to move around the filesystem.
Find out which shell you are currently using.
ls.cd.echo $SHELL.Next lesson: Shell Script Basics & Shebang