clear echo "Enter filename" read filename if [ -f $filename ];then echo "file exist and modification time is "; ls -l $filename | cut -c 50-54 else echo "file not exist" fi
0 comments:
Post a Comment