Hello world script in Bash
- zendnwar
- February 13, 2016
- System Administration
- 0 Comments
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