Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to run a shell script when a specific file or directory changes.

How can I easily do that?

share|improve this question
3  
+1. I think it is on-topic (not sure why someone voted to move to superuser - this question is on shell programming), and a good question. – Merlyn Morgan-Graham Oct 30 '10 at 19:36
I have a post I think is basically the same : stackoverflow.com/q/2972765/119790 – Ian Vaughan Feb 10 '11 at 17:19
@MerlynMorgan-Graham I'd move this to superuser, because the answer might not have anything do with programming - i.e. there might be some program or configuration option that can be used, without any programming needed. I had the same question, and searched superuser first :p – Benubird May 31 at 9:18

4 Answers

up vote 8 down vote accepted

Use inotify-tools.

share|improve this answer
1  
incron is another option. – Dennis Williamson Oct 30 '10 at 21:23

Check out the kernel filesystem monitor daemon

http://freshmeat.net/projects/kfsmd/

Here's a how-to:

http://www.linux.com/archive/feature/124903

share|improve this answer

As mentioned, inotify-tools is probably the best idea. However, if you're programming for fun, you can try and earn hacker XPs by judicious application of tail -f .

share|improve this answer

Here's another option: http://fileschanged.sourceforge.net/

See especially "example 4", which "monitors a directory and archives any new or changed files".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.