Welcome To Mastering Bash Shell Scripting Course.
In this video i will be covering the following basic script:
-----------------------------------------------------------------------------------------------------
#!/bin/bash
echo "1: Welcome to Bash Shell Scripting Course!"
function welcome_message2 {
echo "2: Welcome to Bash Shell Scripting Course!"
}
welcome_message3() {
echo "3: Welcome to Bash Shell Scripting Course!"
}
welcome_message2
welcome_message3
-----------------------------------------------------------------------------------------------------
#shellscripting #bashscripting #acomputerguru