shell script for The script will receive the filename or filename with its full path. The           script should obtain information about this file as given by "ls -l" and           display it in proper format.                                                          e.g. - Filname : , File access permission : , Number of links : ,              Owner of the file : , Group to which belongs : , Size of file : ,              File modification date : , File modification time :                     sh sh6.sh out.sh

shell script for The script will receive the filename or filename with its full path. The script should obtain information about this file as given by "ls -l" and display it in proper format. e.g. - Filname : , File access permission : , Number of links : , Owner of the file : , Group to which belongs : , Size of file : , File modification date : , File modification time : sh sh6.sh out.sh

-----------------------------Script--------------------------- str=`ls -l $1` echo "file Name : " $1 set -- $str echo "File ...