Bash version of trsync
diff --git a/trsync.sh b/trsync.sh
new file mode 100755
index 0000000..8f4aa35
--- /dev/null
+++ b/trsync.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+set -o errexit
+
+BIN_DIR=$(dirname "$(readlink -e "$0")")
+source "${BIN_DIR}/functions/common.sh"
+source "${BIN_DIR}/functions/rsync.sh"
+
+rsync_transfer "$1" "$2"