search for: donefil

Displaying 4 results from an estimated 4 matches for "donefil".

Did you mean: donefile
2015 Apr 28
2
Options for a "I'm done" flag file
...mp;& touch /dst/done Aaaaahhhh, knew I'd miss some detail. All the syncs are pushed to the backup server. But that does give me an idea. I guess I could do that on the source, then sync the flag file over. rsync -avH ${other_gubbins} / user at remote.machine:/dest/ && touch /etc/donefile && rsync -av ${some_other_gubbins} /etc/donefile user at remote.machine:/dest/ That (or some variation of it) could work.
2000 Dec 22
5
(HP-UX) scan: last line gets duplicated (PR#790)
The last line gets duplicated when a file is read like this: a <- scan(file=filename, what="", sep="\n", strip.white=c(TRUE), quiet=TRUE) (This error does not occur on Linux, the only other platform I tested.) Version: platform = hppa2.0-hp-hpux10.20 arch = hppa2.0 os = hpux10.20 system = hppa2.0, hpux10.20 Actually, all binaries are
2015 Apr 28
3
Options for a "I'm done" flag file
As part of my backup system, I use Rsync to keep a copy of each server on one central backup server. This backup server then uses StoreBackup to keep multiple iterations of each clone directory. So that the StoreBackup archives don't keep adding "redundant" and misleading backups, I update a flag file with the current date/time before doing the Rsync update, and test to see if this
2015 Apr 28
4
Options for a "I'm done" flag file
Lorenz Weber <mail at lenzw.de> wrote: > rsync -avH ${all_gubbins} / user at remote.machine:/dest/ && ssh user at remote.machine touch /etc/donefile No SSH access between them, only rsync. Besides, it would add the overhead of managing ssh access (users and keys) as well as Rsync.