How to create bash script
https://linuxhint.com/30_bash_script_examples/
touch file.sh#!/bin/bash
echo "Hello World" bash file.shchmod a+x file.sh
$ ./file.shLast updated
https://linuxhint.com/30_bash_script_examples/
touch file.sh#!/bin/bash
echo "Hello World" bash file.shchmod a+x file.sh
$ ./file.shLast updated