An open API service indexing awesome lists of open source software.

https://github.com/mrc/intersync

Automatically file stuff using rsync, based on what directories exist in the target location.
https://github.com/mrc/intersync

Last synced: over 1 year ago
JSON representation

Automatically file stuff using rsync, based on what directories exist in the target location.

Awesome Lists containing this project

README

          

* intersync
Look at a bunch of directories on a source path, and if they exist on
the destination path, rsync the files across.

Useful for automatically filing stuff.

* examples
#+BEGIN_SRC sh
intersync -c intersync.conf
#+END_SRC

* configuration
#+BEGIN_SRC js-mode
{
"logging":
{
"filename": "intersync.log",
"level": "DEBUG"
},

"source": "/mnt/intersync",
"destinations":
[
"/data/A",
"/data/B",
"/data/C"
]
}
#+END_SRC