Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
08-04-2010, 07:00 AM
|
#1
|
LQ Newbie
Registered: Jan 2010
Posts: 15
Rep:
|
how to check folder if it has files in it using Bash Shell script
Good day gurus!
Say, there is a folder. Its empty. When every I drag a new file and put into it it echo out "there is file in there" and keep monitoring the folder. How can I do it?
Before dragging file into the folder it should appear
[admin@linux shell]$
folder is being monitor....
when I drag a file into the folder it say
[admin@linux shell]$
There is file in folder.....
If no action to be taken, after 300 seconds, it appears like
[admin@linux shell]$
There is file in folder.....
There is file in folder.....
And it keeps going on. Its kinda monitoring and warning people
Please advise...
Thanks in advance
|
|
|
08-04-2010, 07:06 AM
|
#2
|
Senior Member
Registered: May 2007
Location: Sydney
Distribution: RHEL, CentOS, Ubuntu, Debian, OS X
Posts: 1,305
Rep: 
|
you can use the below script, I am using it for /tmp you can give any directory (absoulte path) here
Code:
fname=/tmp
c=`ls -l $fname | wc -l`
if [ $c -ge 0 ]
then
echo "$fname has file in it !!!"
fi
|
|
|
08-04-2010, 10:01 AM
|
#3
|
LQ 5k Club
Registered: Dec 2008
Location: Tamil Nadu, India
Distribution: Debian
Posts: 8,578
|
Here's an idea. Needs folder name passing to the script. Should have error trap for folder not existing, including when script called without being passed the folder name.
Code:
#!/bin/bash
dir=$1
echo "folder '$dir' is being monitor...."
while true
do
[[ "$( echo "$dir/"* )" != "$dir/*" ]] && echo "There is file in folder '$dir' ....."
sleep 300
done
Incidentally, "folder" is Windows-speak, is "directory" in Linux-speak.
|
|
|
08-05-2010, 08:18 AM
|
#4
|
Member
Registered: Mar 2010
Distribution: Arch
Posts: 211
Rep:
|
The linux facility for watching for changes is "inotify", and there's a package inotify-tools to use it from the shell. "inotifywait" in that package does everything you want.
|
|
|
08-05-2010, 06:39 PM
|
#5
|
LQ Newbie
Registered: Jan 2010
Posts: 15
Original Poster
Rep:
|
thanks for your help. I appreciate it
|
|
|
08-05-2010, 07:24 PM
|
#6
|
Senior Member
Registered: Aug 2006
Posts: 2,697
|
Quote:
Originally Posted by vikas027
you can use the below script, I am using it for /tmp you can give any directory (absoulte path) here
Code:
fname=/tmp
c=`ls -l $fname | wc -l`
if [ $c -ge 0 ]
then
echo "$fname has file in it !!!"
fi
|
the result of ls -l on an empty directory gives "total 0". If you pipe to wc, it will be counted as one.
|
|
|
08-05-2010, 07:49 PM
|
#7
|
LQ Newbie
Registered: Jan 2010
Posts: 15
Original Poster
Rep:
|
However, I come up with this solution:
Quote:
while true; do
if [ "$(ls -A $dir)" ]; then
echo "--------------------------------------------"
echo "File exists..."
for var in $dir/*; do
echo "The file name is: $(basename $var)"
done
else
echo "There is no file in this directory.."
echo "the directory is being monitored"
fi
echo "refresh after 10 seconds"
sleep 10
done
|
The above is what exactly I need...
Anyway, thanks for you helps guys!!!
|
|
|
08-05-2010, 07:58 PM
|
#8
|
LQ Guru
Registered: Dec 2006
Location: underground
Distribution: Slackware64
Posts: 7,594
|
Nice work - you got a working solution. If you are happy with that, you can mark this [SOLVED] using "Thread Tools" above the first post.
P.S. - it might make for a nicer (easier to read) display output from the script, if you put a "clear" command after the "sleep" command.
Cheers,
Sasha
|
|
|
All times are GMT -5. The time now is 03:51 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|