mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-29 09:26:08 +00:00
22 lines
441 B
Bash
Executable File
22 lines
441 B
Bash
Executable File
#!/bin/bash
|
|
USAGE="Usage: upload_site_sftp.sh host path user"
|
|
|
|
# command line checks, bash
|
|
if [ $# -ne 3 ]; then
|
|
echo ${USAGE}
|
|
exit 0
|
|
fi
|
|
host=$1
|
|
path=$2
|
|
user=$3
|
|
|
|
echo Uploading generated docs to ${host}/${path}/btstack with user ${user}
|
|
|
|
# SFTP is very peculiar: recursive put only works for a single directory
|
|
sftp ${user}@${host} << EOF
|
|
mkdir ${path}/btstack
|
|
put -r btstack ${path}
|
|
put btstack.pdf ${path}
|
|
quit
|
|
EOF
|