Hello world script in Bash

Make a file under /mnt as helloworld

vim /mnt/hellowrld

#!/bin/bash
echo Hello World

To run this file need permission, following command make permission

chmod u+x /mnt/helloworld

now run your file

/mnt/helloworld

========
Output : Hello World