How to Read Run Time Variables in UNIX?
We may need to read run time variables, during the execution of a unix script. It is done with the help of read command. A few examples as below: server501:# echo “Enter Name: ” Enter Name: server501:# read name Angelina server501:# echo $name Angelina Some other examples 1. server501:# #!/bin/sh server501:# …