rusefi/java_console/upload_file.sh

21 lines
368 B
Bash
Raw Permalink Normal View History

2020-06-16 20:57:50 -07:00
#!/bin/bash
# user=$1
# pass=$2
# host=$3
# destination_folder=$4
# file_to_upload=$5
2020-06-16 20:57:50 -07:00
if [ ! "$1" ] || [ ! "$2" ] || [ ! "$3" ]; then
echo "upload_file.sh says No Secrets, exiting"
2020-06-16 20:57:50 -07:00
exit 0
fi
echo -e "\nUploading file: $5"
2020-06-16 20:57:50 -07:00
# ncftpput -r 999 -m -R -v -u "$1" -p "$2" "$3" $4 $5
2021-12-22 17:25:28 -08:00
pwd
2021-12-22 16:48:54 -08:00
ls -l $5
2021-12-22 17:31:44 -08:00
echo "put $5 $4" | sshpass -p $2 sftp -o StrictHostKeyChecking=no $1@$3