BASH - Basics Commands
This section contains details of basic SHELL commands and its underlying concepts.
Last updated
This section contains details of basic SHELL commands and its underlying concepts.
Last updated
Linux is an open source operating system that manages system’s hardware and resources (CPU, memory and storage). An operating system connects the software and hardware of the system to make them function. It handles the communication between the physical resources and the software. Linux came in mid-1990s and it has been widely used today in smartphones, cars, devices, appliances, etc.
Kernel: Kernel is the core component of Linux. It communicates with the system’s hardware while managing resources of the system. Kernel is the lowest level of the OS and handles memory, process and file management (CPU, RAM, I/O).
System User Space: This works as an administrative layer for system level tasks such as installation and configuration. This is a system library which can access kernel modules. It consists of an init system, shell, command line, daemons (background services), processes that run in the background, desktop environment (users interact with the desktop environment such as GNOME), and user interface which is responsible for displaying the graphics on the screen (Xserver).
Applications: Software using which users can perform tasks. Linux OS provides a lot of apps in its store to install. For example, the Ubuntu software center provides apps that can be installed with a click! Command-line can be used to access the system directly.
Why do we use Linux? Linux is a free, open-source operating system. It is considered the most reliable and secure platform. Linux can be used, run, modified, and redistributed by any user. Anyone can contribute to its source code and redistribute it.
When you work with Shell Scripts in UNIX or Linux, you always must consider the type of SHELL that you are using. It can be a BashShell, a KornShell, a C Shell, and so on. The reason is that the syntax is a little different in the handling of variables and functions etc. As part of the examples used here, we use BashShell.
Installation
Linux:
Check shell type.
You can start working if it is bash.
Otherwise, install bash using sudo apt install bash
.
Mac:
mac comes with zsh shell type.
Install bash via Homebrew.
Windows:
Access Windows Microsoft Store.
Search for Ubuntu App.
Click on Install and we end up getting a SHELL Terminal.
Shell is a Linux command line interpreter which provides an interface between the user and the kernel. The Shell allows users to execute commands. It translates the command and sends it to the system. There are different types of shells such as Bourne (sh), Bourne again (Bash), Korn (Ksh), C-style (Csh, Tcsh) shell, etc.
A shell can differ from the other shell in terms of syntax. We are going to talk about bash shell throughout the course. To check which shell our current system has, do the following:
echo $SHELL
Here, SHELL is a variable. To see the path to the parent directory of the system:
echo $HOME
echo - It prints the text to the terminal - echo "Hello Linux!"
man
- Displays the user manual of any command we pass as an argument. For example, man echo
will display the complete manual of command echo
date - It displays the current date and time.
Options: -u (to print the date and time in UTC),
--date="string" (output based on the given string).
date
date -u
date --date="tomorrow"
pwd
- It prints the path of the current directory.
cd
- It is used to move from one directory to another.
ls
- List all the files in the current directory. Options: -l (to list all the files with details such as permissions, size, etc.)
which
- It locates the command and prints its path. which python which ls which date
We use nano editor to create shell scripts with the SHELL. We usually save the shell scripts using .sh
extension as it is a commonly used convention. .sh
is primarily for UNIX/Linux to understand that this is a script and does not hold a similar prominence for file extension as in regard to Windows OS. By including #!/bin/bash
on top of the script, we let the machine know that the script was written in BASH Shell standards. Below is the Hello World bash script –script1.sh
. The line starting with #
is a comment line.
Copy
Copy
Ctrl+O
to SAVE the file. It will write the file into the file system. Ctrl+X
to exit the editor. To execute this script ./script1.sh
needs to be called from the shell prompt. To execute a file, we need to have the required permissions on the file. ls -l
command will give us the permission matrix on the files available in the respective directory. ls -a
will list all files along with the hidden files which are set with (.) at the beginning of their name.
Permissions set -rw-r--r--
[File/Directory][Owner][Owning Group][EveryoneElse]. The permission set, we've got read and write for the owner. We've got read for the owning group. So as the owner is root. The owning group is also called root and then we've got read for everyone else. What we don't have is execute for anybody. So, for example, if we type in the change mode command chmod +x script.sh
to add the execute permission, now if we do a ls -l
, the permission set will be updated to -rwxrwxrwx
. Notice that we've got an x
now for the owner, for the owning group, and for everybody. At the beginning of the permissions set hyphen -
indicates a file and d
indicates directory permission.
An Environment variable is a dynamically named value that can affect the way of running processes on a computer. They are part of the environment in which a process runs.
echo $PATH
– to print the path value of all the system-defined environment variables
env
– to print all the environment variables available in the system
A fundamental aspect of working with Shell scripts is working with input, output, and returning those results. Below is the script for script2.sh
written in vi editor. There are different other editors like nano, vim, gedit etc. When we execute this script as ./script2.sh
, we get to enter project code and we get the value echo on-screen.
Copy
Variables are case-sensitive in BASH. To unset a value associated with the variable, use UNSET
keyword. By default, all the declared variables with values will be un-set as soon as we close the BASH automatically. However, if we wish to set the value permanently available every time you login to BASH, go to .bashrc
file to declare the variable and set value to it. This file will be called as part of the startup script. Few examples for variables
pwd
–Current/Previousworking directory
echo "Current Usr:" $USER
– to print the user logged in
Below code snippet is a way to declare and call the integer type variables.
Copy
Below code snippet is a way to declare and call the string variables
Copy
echo ${fakevar –"This is a test"}
– If this returns blank then fakevar
doesn’t exists
echo ${#rovar}
– gives the count of elements in the rovar
echo ${rovar#*r}
– truncates data until r and displays the rest of the value
Passing and Using Arguments in Shell Scripts
Below script args.sh
which defines $1
and $2
variables. Values need to be passed while executing the script as follows ./args.sh 31 27
Copy
Some in-built UNIX/Linux special variables
$0
- The filename of the current script.
$#
- The number of arguments supplied to a script.
$*
- If a script receives two arguments, $* is equivalent to $1 $2
$?
- The exit status of the last command executed
$$
- The process number of the current shell
$!
- The process number of the last background command.
The command-line arguments $1, $2, $3, ...$9
are positional parameters, with $0
pointing to the actual command, program, shell script, or function and $1, $2, $3, ...$9
as the arguments to the command
In BASH, >
symbol prints data as output from the file and <
symbol takes data from the file as input. Pipe |
symbol is used to provide a response of one command to another. This will help us to move the content of one command to another command. Examples for redirection are illustrated below:
touch labs.txt
– for creating a blank file called labs.txt. Open and add data using nano editor
cat labs.txt > /dev/stdout
– to print the data as the output on Standard Output i.e. Screen
sort < labs.txt
– to print the data in labs.txt in a sorted fashion
grep -i "t" < labs.txt
– finds all the strings/elements which has "t"
find /<foldername>/ -size +800c
– finds files in where there are more than 800 characters
ls | wc -l
– takes the output of the first command, passes it to the second command, and returns the result.
wc -l names.txt | tee -a file2.txt
– file2.txt contains the output of the first command
In BASH, we can move a process/script execution to background or foreground based on the time consumed by the script to run on open SHELL. There could a long-running scripts which might take too much time. Such scripts can be moved to the background. To demonstrate this, go to the root folder and run find
command. This will list all directories available on your root. Ideally, we use Cntrl+S
to pause, Cntrl+Q
to resume and Cntrl+C
to exit from a long-running script.
Type jobs
to know the list of active scripts running at a given point in time.
cat /dev/random > /dev/null
– is a random number with no response
cat /dev/random > /dev/null&
will run the editor and type text and stop
fg <jobnumber>
- to resume the background running job on to screen
bg <jobnumber>
- to move the job to background out of the screen
kill <jobnumber>
- to stop the job
The command env gives us all the built-in variables used by the BASH
Shell. HOSTTYPE, LANG, NAME, USER, SHELL, LOGNAME, PATH, LS_COLORS
etc. are a few of the built-in variables.
ls /bin
- gives us all the files under /bin folder location.
echo $?
– to get the exit status of the last executed command.
If it returns 0, then the last executed command was successful.
Any non-zero value is bad news.
ls /fake
– will throw an error whenever there is no fake folder.
Now echo $?
will return 1 - which is an error as the last executed threw an error.
An example file to use built-in variables in a script - machine_stats.sh
The script will return 0 as output value when executed as ./machine_stats.sh
as it was expecting an argument. Now pass ./machine_stats.sh 1
, we get output value as 1 as we passed a value along with the file during its execution.
Copy
While executing the below example script file output.sh
, we do see that the values of variables are being manipulated and stored in an external file. The command cat <hostname>_stats.txt
will give us the intended output from the script. Use rm _stats.txt
to delete the file.
Copy
A variable has a scope or limit of access based on where it can be operated. While executing the below script call_export_var.sh
file, we used servername
variable from this file and called it in a subfile called export_var.sh
which was declared in the same script. By calling ./call_export_var.sh
, we do not see the variable name as output. However, if we call ./export_var.sh
script file, we do see the variable name being displayed from call_export_var.sh
file. The variables have been manipulated in such a way that they can be declared in one file and can be called in another script as this defined the scope. To do so we need to use a command called export within the parent script so that this exported variable can be used in any other child script.
To understand the scope better, follow below scope.sh
. The variables in the functions are localized until they are called outside. If func2
was called before func1
declaration, it returns no results. Thus, func2
should be called after func2
logic. Same with the case of func1
By calling the scope.sh
script file as . ./scope.sh
is called double dotsouring, we can use the $classname
variable outside the scope.sh
file as dotsouring helps us re-use it in multiple places across the bash. Here the variable is declared internally in a script file and the output value is being used across the shell. declare
command needs to be used to ensure that it is used in such a way.
BASH allows output variable formatting. Follow the below examples:
echo "Kevin said "Hello World""
- we get Kevin said Hello World
echo "Kevin said \"Hello World\""
- we get Kevin said "Hello World"
echo "Stock Price is $500"
- we get Stock Price is 500
echo "Stock Price is $500"
- we get Stock Price is $500
date
- gives us Thu Jan 3 22:18:42 DST 2019
date +'%Y-%m-%d
- gives us 2018-04-09
When datevar = date +'%Y-%m-%d,
then echar $datevar
- gives us 2018-04-09.
`
backtick – is used to store results for the command in the variable
printf "%s\n" $costcenter
- %s for string and is the newline character
printf "%.3s\n" $constcenter .3s
- displays only the first 3 strings
When numvar=5.5
, echo $numvar
- gives 5.500000 with 6-digit precision
printf "%f\n" $numvar
- %f for floating-point number
When numvar=5673
, printf "%d\n" $numvar
- %d for integer
The function is a code snippet that is defined and used to re-run or re-use a logic. The below script func_lib.sh
contains two functions userinfo()
and ipinfo()
which are called while running the script file as ./func_lib.sh
. By dotsouring ../func_lib.sh
, we can make the ipinfo
function run outside the script as an individual function as we have raised the scope of this function from local to global.
In a Shell script, variables are by default treated as strings but not as numbers. This creates challenges for performing the math operation in shell scripts. However, there are few good commands which help us perform arithmetic operations in Shell.
+
add, -
subtract, *
multiply, /
divide, ++
increment by 1, --
decrement by 1, %
modulus
let – it helps us perform the arithmetic operation through the command line. Below letmath.sh
contains all its variations of let
command
Expr – it is like let
command. However, instead of saving the result to a variable, it prints the answer. Unlike let
command you don't need to enclose the expression in quotes. You must provide spaces between the items of the expression. It is also common to use expr
within command substitution to save the output into a variable. exprmath.sh
contains all its variations of expr
command
Double Parenthesis (( )) –It is a way to handle arithmetic operations by passing the expression within the parenthesis. doublemath.sh
contains all the variations below:
bc (Basic Calculator) –This is a plugin in BASH to run basic calculator application. Use the command apt-get install bc
to install the basic calculator. By just running bc
command, the basic calculator will be opened in interactive mode. We can run the bc command in non-interactive mode using |
symbol. bc
helps us to handle the floating-point value-based calculations. Non-Interactive mode - echo “579*2.5” | bc
Below is an example script for usingbc
command within a script. Floating points are handled without any issues using bc
command.
test Command-This command checks file type and compare values on the command line and returns the success flag based on true or false condition.
test 27 -gt 2 && echo "Yes"
– Returns Yes, as 27 is greater than 2
test 27 -lt 2 && echo "Yes"
–Returns nothing as we have not defined false condition
test 27 -lt 2 && echo "Yes" || echo "No"
– Returns No, as 27 is not less than 2
test 25 -eq 25 && echo "Yes" || echo "No"
- Returns Yes, as 25 is equal to 25
test 15 -ne 10 && echo Yes || echo No
– Returns Yes, as 15 is not equal to 10
Below cod
e snippet returns relevant echo based on the presence of the respective file.
test -f /etc/resolv.conf && echo "File /etc/resolv.conf found." || echo "File /etc/resolv.conf not found."