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

I am trying to create a bash script that takes 2 parameters a directory and a command, I need to watch this directory for changes and when something has been changed I need to execute the command. I'm really new to bash scripting and am not really sure what I am doing, so go easy on me. I also on a mac, not linux. Any pointers, or external resources would greatly help. I know that a lot of people try this on the internet and none can seam to get it right. I am really trying to mimic SASS's watch functionality.

#!/bin/bash

#./watch.sh $PATH $COMMAND

DIR=$1  

ls -l $DIR > $DIR/.begin
#this does not work
DIFFERENCE=$(diff .begin .end)

if [ $DIFFERENCE = '\n']; then
    #files are same
else
    $2
fi 

ls -l $DIR > $DIR/.end
share|improve this question

6 Answers

To continuously recursively monitor folder (md5) and execute a command on change:

daemon() {
    chsum1=""

    while [[ true ]]
    do
        chsum2=`find src/ -type f -exec md5 {} \;`
        if [[ $chsum1 != $chsum2 ]] ; then           
            compile
            chsum1=`find src/ -type f -exec md5 {} \;`
        fi
        sleep 2
    done
}

Works on my OS X as I do not have digest.

share|improve this answer
3  
Nice, I would however suggest replacing chsum1=... with chsum1=$chsum2. Otherwise, changes happening during compile would not be noticed. – Kleist Apr 8 '12 at 9:45

METHOD 1:

#!/bin/sh

check() {
    dir="$1"
    chsum1=`digest -a md5 $dir | awk '{print $1}'`
    chsum2=$chsum1

    while [ $chsum1 -eq $chsum2 ]
    do
        sleep 10
        chsum2=`digest -a md5 $dir | awk '{print $1}'`
    done

    eval $2
}

check $*

This script takes in two parameters [directory, command]. Every 10 seconds the script executes check() to see it the folder has changed. If not it sleeps and the cycle repeats.

In the event that the folder has changed, it evals your command.

METHOD 2:
Use a cron to monitor the folder.

You'll have to install incron:

 sudo apt-get install incron

And then you're script will look something like this:

#!/bin/bash
eval $1

(You won't need to specify the folder since it will be the job of the cron to monitor the specified directory)

A full, working example can be found here:

http://www.errr-online.com/index.php/2011/02/25/monitor-a-directory-or-file-for-changes-on-linux-using-inotify/

share|improve this answer
Edited to do what you need. Enjoy. – Swift Jun 25 '11 at 1:53
I don't have a digest command – ThomasReggi Jun 25 '11 at 1:55
3  
You can use md5sum (or, more reliably, sha1sum). – Adam Liss Jun 25 '11 at 2:08
Here is a new approach using crons – Swift Jun 25 '11 at 2:16
incron is linux only :( – ThomasReggi Jun 25 '11 at 4:39

Why not using AppleScript

http://www.tuaw.com/2009/03/26/applescript-exploring-the-power-of-folder-actions-part-iii/

on adding folder items to this_folder after receiving added_items
tell application "Finder"
...
share|improve this answer
this does not work – ThomasReggi Aug 2 '11 at 0:27
ok, let me correct myself. This works for receiving files but not responding to changes. I found this out the hard way spending a whole week trying to emulate dropbox. So my point is you cant "watch" a folder completely especially with folder actions. stackoverflow.com/questions/6476166/… – ThomasReggi Aug 2 '11 at 0:53

I can’t believe nobody posted this yet.

First make sure inotify-tools in installed.

Then use them like this:

logOfChanges="/tmp/changes.log.csv" # Set your file name here.

# Lock and load
inotifywait -mrcq $DIR > "$logOfChanges" &
IN_PID=$$

# Do your stuff here
...

# Kill and analyze
kill $IN_PID
cat "$logOfChanges" | while read entry; do
   # Split your CSV, but beware that file names may contain spaces too.
   # Just look up how to parse CSV with bash. :)
   path=... 
   event=...
   ...  # Other stuff like time stamps?
   # Depending on the event…
   case "$event" in
     SOME_EVENT) myHandlingCode path ;;
     ...
     *) myDefaultHandlingCode path ;;
done

Alternatively, using --format instead of -c on inotifywait would be an idea.

Just man inotifywait and man inotifywatch for more infos.

share|improve this answer
Just tried installing inotify-tools on a mac and it failed, posted github issue if your interested. – ThomasReggi Aug 1 '12 at 4:07
I posted a solution for your github issue. It’s only an autoconf version mismatch. :) – Evi1M4chine Aug 21 '12 at 14:00

In Mac OS X, you can just control-click a folder, then click 'Folder Actions Setup'. This will allow you attach actions to a folder, i.e. scripts to run.

OS X comes with a number of prebuilt scripts, or you can create your own.

share|improve this answer

If you only need to check for files being created/deleted on top level (not checking subfolders) you might want to use the following.

It uses few ressources hence it can react quickly, I use it to check for a changed file.

#!/bin/bash

file="$1"
shift

tmp=$(mktemp)
trap 'rm "$tmp"' EXIT

while true; do
    while [ ! "$tmp" -ot "$file" ]; do
        sleep 0.5
    done
    eval "$@ &"
    echo $! > "$tmp"
    wait
done
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.