Beginners Guide for cd Command on Linux

The UNIX/Linux CD command is popularly used to move into different directories from the current working directory using the command line (or terminal). When you open your terminal, Linux will use your home directory as the current working directory, so to navigate into a different

Beginners Guide for Read Command in Linux

The read command is a built-in Linux utility for shell script writers (and for you) to take single line input from the keyboard or from the file descriptor and store it in a variable. The applications for this command are wide ranging, like asking for

What is Shell? | CLI vs GUI | Shell Scripting Explained

To understand the shell, first look at the following picture: The shell is nothing more than a program that carries the user typed commands or instructions from the terminal and converts them into something that the kernel can understand. If you’re using popular operating systems

What is Shebang (#! /bin/bash) in Linux Shell Script

If you have been using Linux for a while, then you have definitely spotted this “#! /bin/bash” line at the beginning of an shell script. What is Shebang (#! /bin/bash) in Linux Shell Script The “#! /bin/bash” on Linux, famously known as shebang or hashbang,

How to Use Here Document (HereDoc) in Linux Shell Script

While writing shell script, you might get stuck in the situation where you want to redirect a block of lines from your script to interactive commands like sed, cat, ssh, or ftp. The purpose of this redirection might vary from situation to situation. For example,

What is Exit Status Code ($?) of Last Command in Linux

The “$?” is a built-in variable that your shell uses to store the exit status code of the last executed command in integer format and remains unchanged unless the next command is executed. Using this exit status code, you can debug the problem that occurred

Beginners Guide for Unset Command in Linux

The unset command is a built-in Linux command used for flushing the value of variables or functions during program execution. Tutorial Details Description Unset Difficulty Level Low Root or Sudo Privileges No OS Compatibility Ubuntu, Manjaro, Fedora, etc. Prerequisites unset Internet Required No Syntax of

Beginners Guide for Set Command in Linux

The set command is a built-in Linux command that can display or modify the value of shell attributes and positional parameters inside the current shell environment. This modification can help to debug your script by finding undefined variables, errors, job control, printing commands as they

Beginners Guide for Export Command in Linux

Whenever you start a new shell session (by opening a terminal), a set of environment variables is loaded from the shell configuration file into your current shell session. These environment variables determine different customizations in your shell, like the default editor using “$EDITOR“, or setting

Beginners Guide for PS Command in Linux

The PS, a.k.a. “process status”, is a native command-line utility for UNIX-based systems to monitor the currently running processes in your system. It reads the information from the virtual files in the /proc filesystem and gives the running processes information like memory consumption, CPU usage,

How to Run (.sh) Shell Script in Linux [for Beginners]

How do I write and run a shell script on Linux? Is there a way to run a shell script without executable permission, or can we run a shell script directly from a URL? Don’t worry; you are about to learn all those things in