Get Started With Awk in Bash
4 min read
Awk can be very useful when working with text files in Bash. This is a short cheat sheet on some of the...
Bash Essentials To Create Useful Automation Scripts
12 min read
Bash syntax is quite complex and can be hard to grasp. This is a guide, or cheat sheet, to give you all...
Replace Text or a String in Bash
3 min read
Sometimes you might need to replace some text in a string - the bash allows you to do so easily. This...
Find Files in Directories in Bash
2 min read
Bash provides some great feature for you to find the files you are looking for, this is a simple way...
Loop Through Arrays in Bash
1 min read
How to loop through arrays in Bash
See if a Package Exists in a Bash Script
1 min read
How you can see if a package or commando exists in a Bash script.
Save Output to a Variable in a Bash Script
1 min read
Save the output of a command in a Bash script to use it later.
Adding Short (and Long) Flags to Bash Scripts
7 min read
Adding flags to your bash script will probably simplify your developing experience. This is a short guide...