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.

my first question + here we go....

this is a simple script, i had it working before, but now its dead.

when a file comes into a dropbox folder, it appears on the server. this simple script has inotifywait watching for appends and doing things i need done with the incoming files, in this case, a simple move to another folder.

    inotifywait -r -m -e attrib /path/to/watched/directory/

    while read dir ev file;

        do 

        cp $file ../123

        done

I get this error

    cp: cannot stat `121013_0005.jpg': No such file or directory

I'm missing something simple, pls school me.

share|improve this question

1 Answer

  • you need a pipe on the first line
  • you should quotes all variables

So finally :

inotifywait -r -m -e attrib /path/to/watched/directory |
    while read dir ev file; do
      cp "$file" ../123
    done
share|improve this answer
omg....that's wat was in the working script and I remeber deleting it...can you explain the pipe. and thx u. – sirvon andre thomas Oct 14 '12 at 18:54
Wikipedia will do it better than me : en.wikipedia.org/wiki/Unix_pipes – sputnick Oct 14 '12 at 19:04
ok. now I get the first commands output is being "piped" into the input of the while statement. What is a more efficent way of programming this in node.js or python?..to google I go. – sirvon andre thomas Oct 14 '12 at 19:05

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.