#bash
Read more stories on Hashnode
Articles with this tag
When writing shell scripts, ensuring that certain variables are set and not empty is crucial. One handy feature in Bash for this purpose is the :?...
Bash scripts often require the ability to process both positional and named (or optional) arguments. Understanding how to handle these types of...
In Unix-like operating systems, shell scripts can be called from within other shell scripts, either to run in the same process or in a different...
For debugging purposes, we had to profile a Python program using cProfile which will create a .prof file with the profiled data. Also, we wanted to...