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.
- Host: GitHub
- URL: https://github.com/mrc/intersync
- Owner: mrc
- Created: 2012-09-29T09:56:21.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-09-29T09:56:41.000Z (almost 14 years ago)
- Last Synced: 2025-02-12T01:17:44.269Z (over 1 year ago)
- Language: Python
- Size: 93.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
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