Write a Shell Script to read data from a file.
$vi read.sh echo “enter the name of the file for read content” read file1 cat $file echo “completed “ OUTPUT *********** [04mca58@LINTEL 04mca58]$ sh read.sh enter the name of the file for read content a.txt 1 2 2 3 3 3 4 4 4 4 completed