
Jan 26, 2021
Bash wait Command
wait is a command that waits for the given jobs to complete and returns the exit status of the waited for command.
Read more

Jan 4, 2021
Bash: Write to File
This article explains how to write text to a file in Bash, using the redirection operators and tee command.

Dec 29, 2020
Bash read Command
read is a bash built-in command that reads a line from the standard input (or from the file descriptor) and split into words.

Jun 8, 2020
Bash Exit Command and Exit Codes
In this article, we will cover the Bash exit built-in command and the exit statuses of the executed commands.
Jun 5, 2020
How to Redirect stderr to stdout in Bash

May 31, 2020
Bash printf Command

Feb 9, 2020
Bash Sequence Expression (Range)

Jan 29, 2020
Bash Select (Make Menus)

Jan 28, 2020
Bash break and continue

Dec 21, 2019
Bash: Append to File
