Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to make a bash script with inotiy-tools that will monitor a directory.

Here is my script

while f=$(inotifywait -m -e create -q -r "/media/data2/Music/English"  --format '%f %w')
do
    echo "$f"
done

The problem is when I run the above script it prints nothing on the terminal. I have checked the inotifywait command and it runs fine on terminal but why it is not working inside my script.

inotifywait on terminal

noob@noob:~$ inotifywait -m -e create -q -r /media/data2/Music/English  --format '%f %w'
hello /media/data2/Music/English/
share|improve this question

1 Answer

up vote 1 down vote accepted

The problem is f=$(inotifywait... waits for that command to end and only then gives you the output.

I rarely write bash, but you could try:

inotifywait .... |
while read line
do
    echo $line
done
share|improve this answer
Ok, than what should be my correct approach. – Noob Jul 9 '12 at 11:03
thanks, worked like a charm. – Noob Jul 9 '12 at 11:06
Also can you point me to correct documentation which states that $() waits for that command to end and only then gives the output. – Noob Jul 9 '12 at 11:10

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.