Guest User

Untitled

a guest
Jan 21st, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. while [[ true ]] ; do
  4.  
  5. # performs synchronizations / copy
  6. rclone sync ....
  7.  
  8. # waiting for something to change or it will pass 300 seconds
  9. inotifywait --recursive --timeout 300 -e modify,delete,create,move SRC_DIR
  10.  
  11. # going back to the beginning
  12. done
Add Comment
Please, Sign In to add comment