You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
RUSER=sipp11 |
|
RHOST=expert.traffy.xyz |
|
PORT=22 |
|
RPATH=/opt/stdb-web/stdb |
|
LPATH=./ |
|
rsync -avu -e "ssh -p $PORT" $LPATH $RUSER@$RHOST:$RPATH \ |
|
--exclude=node_modules --exclude=.git \ |
|
--exclude=*.sh --exclude=.DS_Store
|
|
|