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