Introduction

History

Linux desktop environment

Linux Shell

There could be many ways to interact with the OS, and tell it to do something, some of them being: Graphical user interface (GUI), Touch screen interface, and Command line interface (CLI)

What is it?

Environment variables

<aside> 👉 Basics

</aside>

#Check all the environment variables for our shell
env

#Define a global variable, but no space should be b/w =
export variableName="value"

<aside> 👉 $PATH

</aside>

#Check all the directory defined in the $PATH variable
echo $PATH
/usr/local/sbi n:/usr/local/bin:/usr/sbin:/usr/bin :/sbin:/bin

#Add a new directory to $PATH by editing the .bashrc file, or its equivalent
export PATH='path:$PATH'

>Operators in Linux

Linux Operators

>Data Stream, Piping and Redirection