Write a Shell script to list all of the directory files in a directory.

AIM:

Write a  Shell script to list all of the directory files in a directory.

Program:

# !/bin/bash
echo "enter directory name"
read dir
if[ -d $dir]
then
echo "list of files in the directory"
ls –l $dir|egrep ‘^d’
else
echo "enter proper directory name"
fi

Output:

guest-glcbIs@ubuntu:~$sh lprg6.sh
enter directory name
dir1
list of files in the directory
drwxrwxr-x 4 guest-glcbls guest-glcbls 140 2012-07-06 14:40 dir1