You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash
|
|
USER=swadmin
|
|
HOST=rem
|
|
PORT=22
|
|
DIR=/home/swadmin/smoothiegpt
|
|
|
|
rsync -e "ssh -p ${PORT}" -avz --exclude="tmp" --exclude ".git" --exclude "node_modules" --exclude "build" --exclude "output" . ${USER}@${HOST}:${DIR}
|