shell programming in linux code example
Example 1: shell file in linux
#!/bin/sh
ls
Example 2: 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"