#bash
Read more stories on Hashnode
Articles with this tag
Reading the command arguments in Bash script · Command line arguments are the arguments passed to a program or script when it is executed. They provide a...
Using subshell · Subshells in Unix refer to running a shell command within the parenthesis (). This spawns a subshell - a separate copy of the shell....
Here are some debugging techniques for Bash scripts: set -x: This turns on trace mode, which prints each command and its arguments as they are...
Process Substitution allows commands to communicate with each other by passing the output of one command as the input to another command, without...
What are signals and how to handle them in Bash · Bash scripts can receive signals from the operating system or other processes. These signals can...
Bash can be used to make a web backend. However, it is not the best choice for this purpose. Bash is a scripting language, which means that it is not...