#!/bin/bash # # sync home folder across systems # DEST="$1" if [ ! -z "$DEST" ]; then profile="$DEST-home" if [ -f "$HOME/.unison/$profile.prf" ]; then unison $profile else echo "No such profile $HOME/.unison/$profile.prf" exit 1 fi fi