Bash Structure
bash script_name.sh
OR
./script_name.shSample Script
#!/bin/bash
echo “Hello World!”chmod +x hello.sh./hello.sh or bash hello.shLast updated
bash script_name.sh
OR
./script_name.sh#!/bin/bash
echo “Hello World!”chmod +x hello.sh./hello.sh or bash hello.shLast updated