Shopping In MUMBAI

Are you searching for Discounts, offers, sale in Mumbai ? You are in the right place. MUMBAI, a shopping haven, has no dearth of great discounts and sales. This blog features the best MUMBAI shopping offers, sale, discounts and deals and bargains CURRENTLY GOING on in Mumbai plus a few free things thrown in on top. Don't wait for it because once they are gone, they are gone. Hurry!..By clicking the "Like" button you will receive a daily update of discounts, sale, offers going on in Mumbai. LIKE IT.... SHARE IT...njoY.

Tuesday, January 20, 2009

UNIX program to check whether every argument supplied is a file or a directory

Write a shell script, which will receive any number of filenames as arguments. The shell script should check whether every argument supplied is a file or a directory. If it is a directory it should be appropriately reported. If it is a filename then name of the file as well as number of lines present in it should be reported.
while [ $# -gt 0 ]
do
if [ -d $1 ]
then
echo "$1 is a directory..."
else
echo "$1 is a file..."
echo "$1 has `wc -l $1` lines"
fi

shift
done

UNIX program to check whether every argument supplied is a file or a directorySocialTwist Tell-a-Friend

0 comments:

SUPPORT THIS BLOG