summaryrefslogtreecommitdiffstats
path: root/.local/bin/sync-pull.pl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-x.local/bin/sync-pull.pl38
1 files changed, 38 insertions, 0 deletions
diff --git a/.local/bin/sync-pull.pl b/.local/bin/sync-pull.pl
new file mode 100755
index 0000000..c5ddb94
--- /dev/null
+++ b/.local/bin/sync-pull.pl
@@ -0,0 +1,38 @@
+#!/usr/local/bin/perl
+
+use strict;
+use warnings;
+
+sub main
+{
+ my $i;
+
+ print "Check...\n";
+ $i = 0;
+ while (system('/bin/pgrep', 'newsboat') == 0) {
+ print "newsboat running, exiting...";
+ exit 1;
+ }
+ system(
+ '/usr/local/bin/rsync',
+ '-a',
+ '-e',
+ 'ssh',
+ 'root@207.246.81.115:/root/sync/newsboat/cache.db',
+ '/home/jozan/.local/share/newsboat/cache.db'
+ );
+ system(
+ '/usr/local/bin/rsync',
+ '-a',
+ '-e',
+ 'ssh',
+ 'root@207.246.81.115:/root/sync/abook/addressbook',
+ '/home/jozan/.abook/addressbook'
+ );
+ exit 0;
+}
+
+main();
+
+__END__
+