10 lines
207 B
Bash
10 lines
207 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
DESTINATION=root@static.recycled.cloud:/var/www/
|
||
|
WEBSITE=static.staging.recycled.cloud
|
||
|
|
||
|
sftp -b - "$DESTINATION" <<- EOF
|
||
|
-rm $WEBSITE/*
|
||
|
$(for f in "$@"; do echo "put -R $f $WEBSITE/"; done)
|
||
|
EOF
|