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 have the following script:

#!/bin/sh
while inotifywait -e modify -e create -e delete /home/me/Dropbox/text; do
    touch testscriptworked
done

With the script running, when I make changes to the actual text directory in Dropbox, inotifywait picks it up. But if I use a text editor on my iPad linked to that Dropbox folder, inotifywait never picks it up.

I'm pretty new to this so anything will help. Thanks.

share|improve this question

1 Answer

its because alot of mobile apps ive seen, by just randomly watching inotifywait verbose, arent triggering create events when something is created.

the event you wanna watch for is ATTRIB.

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.