blob: a7a5ae8400d5b4a2e9ad76107521348498d78256 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/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/
|