From f1e7ddcf948b81b2eae5bc7c72b47f8caf13360a Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 13 Oct 2016 15:04:23 -0300 Subject: Rename scripts to unisync- --- unisync-all | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100755 unisync-all (limited to 'unisync-all') diff --git a/unisync-all b/unisync-all new file mode 100755 index 0000000..c11837d --- /dev/null +++ b/unisync-all @@ -0,0 +1,51 @@ +#!/bin/bash +# +# sync code or home folder across systems +# + +BASENAME="`basename $0`" +DEST="$1" +UNISON="unison" + +# Use the following config if you need to sync with legacy systems +UNISON="unison" + +function sync_code_run { + local config="$1" + + if [ -z "$config" ]; then + return + fi + + if [ -f "$HOME/.unison/$config.prf" ]; then + echo "Starting sync using $config..." + $UNISON $config + else + echo "Skipping absent profile $config." + return + fi +} + +if [ ! -z "$DEST" ]; then + profiles="" + + if [ "$BASENAME" == "unisync-code" ] || [ "$BASENAME" == "unisync-all" ]; then + profiles="$profiles $DEST-code" + fi + + if [ "$BASENAME" == "unisync-irssi" ] || [ "$BASENAME" == "unisync-all" ]; then + profiles="$profiles $DEST-irssi" + fi + + if [ "$BASENAME" == "unisync-irssi-tor" ] || [ "$BASENAME" == "unisync-all" ]; then + profiles="$profiles $DEST-irssi-tor" + fi + + if [ "$BASENAME" == "unisync-home" ] || [ "$BASENAME" == "unisync-all" ]; then + profiles="$profiles $DEST-home" + fi + + for profile in $profiles; do + sync_code_run $profile + done +fi -- cgit v1.2.3