| by Arround The Web

How Do You Grep Case Sensitive?

In this article, we will have a deep discussion on the Linux command topic of “grep” for working on the case sensitive.

Share Button
Read More
| by Arround The Web

How to Count the Number of Lines in a File in Bash

Practical tutorial on how to count the number of lines in a file in Bash using several commands that display the number of lines in the provided file.

Share Button
Read More
| by Arround The Web

What is $0 in a Bash Script?

This is using “$0” in bash scripts. The file is stored in this “$0,” so we have utilized it in various cases and shown the bash script’s name in the terminal.

Share Button
Read More
| by Arround The Web

How to Pass a Filename as Argument in a Shell Script

Practical guide on how to pass a filename as an argument in Linux shell by passing a single file name as an input and passing multiple filenames as arguments.

Share Button
Read More
| by Arround The Web

What Is Cat EOF in Bash Script

Practical tutorial on what is the cat EOF command, the working of cat EOF, and the method to use it in the Bash script using practical examples.

Share Button
Read More
| by Arround The Web

How to Write the Bash If-Else Statement in One Line

Comprehensive guide on how to write the if-else statement in Linux Bash in one line using the –gt flag with, with multiple conditions, utilizing it in one line.

Share Button
Read More
| by Arround The Web

Bash Cut Command with Examples

In this article, we introduced to you to the Linux command “cut” which is used to cut some part of the specified portion of any file.

Share Button
Read More
| by Arround The Web

How to Use the Bash “Set –X” Option

Practical tutorial on how to use the “set -x” command in Bash as a debugging process that troubleshoots the code by recognizing the bugs in the script.

Share Button
Read More
| by Arround The Web

Bash Loop Through Files In A Directory?

In this, we studied looping through the directories, we introduced you to the for loop that is used to fetch files from directories and also with its works.

Share Button
Read More
| by Arround The Web

Create Bash Functions with Arguments

This has discussed how to write a bash function in Linux that takes arguments. In a bash function, various techniques for sending arguments have been defined.

Share Button
Read More
| by Arround The Web

How to Export a Path in .Bashrc

Tutorial on how to get or export the default path in .bashrc in the terminal and what to do to add the path if it is not already there using practical examples.

Share Button
Read More
| by Arround The Web

Bash Remove Last x Characters From String?

In this article, we have examined how to use bash to eliminate a single character from a line and how to eliminate the last letter from a given string.

Share Button
Read More
| by Arround The Web

Remove a Specific Element from an Array in Bash

Tutorial on deleting a specific element from an array in Bash using the unset command to remove the entire array and the particular element from the array.

Share Button
Read More
| by Arround The Web

Bash Set Command

Tutorial on the uses of the different options of the Bash set command to modify or display the different attributes and parameters of the shell environment.

Share Button
Read More
| by Arround The Web

How to Run a Bash Script

Tutorial on how to run a Bash script in Linux by creating a Bash file on the desktop, executing it using the chmod command, and using the bash and sh keywords.

Share Button
Read More
| by Arround The Web

Delete a Folder in Bash

Guide on how to use the rm -rf command in Bash to delete a folder or directory, how to simultaneously delete multiple folders, and how to use the “ls” command.

Share Button
Read More
| by Arround The Web

Bash read command

Comprehensive tutorial on the uses of some useful options of the Bash read command using multiple examples to take the user’s input from the terminal.

Share Button
Read More
| by Arround The Web

Different Examples of Checking Whether a Sting Contains a Substring or Not

Practical tutorial on checking the existence of the substring inside another string in different ways using the different Bash commands and statements.

Share Button
Read More
| by Arround The Web

How to Use $IFS in Bash?

Tutorial on the method of separating a token in Bash through $IFS by implementing the Bash scripts and using $IFS in the command prompt to divide the string.

Share Button
Read More
| by Arround The Web

Creating Bash Infinite Loop by Example Scripts

The guide helps us to create the bash infinite loop which continues to run constantly because no ending condition is given to them.

Share Button
Read More