diff options
author | davidovski <david@davidovski.xyz> | 2022-05-23 19:52:33 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-23 19:52:33 +0100 |
commit | e16139e42feb7c5f5a4c5d46f9bad60d1434b134 (patch) | |
tree | da1190822eea88b47cbf507aecbbc3cb40ea3b3a /sync.sh | |
parent | 82961a89b2a881afec478bf5902bd30ea09b6fd0 (diff) |
added makefile
Diffstat (limited to 'sync.sh')
-rwxr-xr-x | sync.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sync.sh b/sync.sh deleted file mode 100755 index a7a5ae8..0000000 --- a/sync.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -source xib_env - -sync () { - for i in $@; do - echo "syncing from $XIB_EXPORT to $i" - [[ $# = 0 ]] || rsync -Lta --no-perms --no-owner --no-group --delete -z -e ssh "$XIB_EXPORT/" $i - done; -} - -sync oracle2:/srv/www/xi/html/ cheetah:/srv/www/xi/html/ - |