shell scripting in linux code example
Example 1: bash scripting
#!/bin/sh
# Author : Zara Ali
# Copyright (c) Tutorialspoint.com
# Script follows here:
echo "What is your role"
read ROLE
echo "My Role : $ROLE"
Example 2: shell script linux
#!/bin/bash
echo "Hello World!"
Example 3: linux shell script
#!/bin/bash
echo "Hello World"