Create a script called 'thisdir' that lists the directories those contain the files of specified size in the given directory (except the current directory). thisdir has two input arguments directory_path and size_of_file. It searches through the given directory and list the name of all its sub-directories, which contains any file equal to or greater than the size_of_file specified.
2006-10-27
03:47:43
·
3 answers
·
asked by
iMaXX
4
in
Computers & Internet
➔ Programming & Design
Thanks ebrosch! but thats wht i did.
echo "Enter Path"
read PATH
echo "Enter Size"
read SIZE
find $PATH -size ${SIZE}c
but it's not working error is "find command not found!"
but it's working without variables(fixed path and size)
2006-10-30
22:09:55 ·
update #1