mstechnical.in

Author name: mstechnical.in

Basic Linux Shell Scripting for DevOps Engineers.

What is #!/bin/bash? can we write #!/bin/sh as well? This is known as the shebang line, bash is a program under the bin directory which has a feature to run all the commands. so by this line, we are giving instructions to a shell file that whatever commands written in this .sh file need to be run. Also #!/bin/bash? and #!/bin/sh are the

Basic Linux Shell Scripting for DevOps Engineers. Read More »

Scroll to Top