#!/bin/bash REPORT_NAME=$1 VERSION=$2 ENV=$3 if [ -z "$REPORT_NAME" ] then source ExtentReport/versions.info now=$(date +'%Y-%m-%d_%H_%M') REPORT_NAME="${now}" VERSION="${osVersion}" if [[ $env == *"DEV20"* ]] then ENV="Nightly" else ENV="" fi fi /usr/bin/expect << EOF spawn ssh admin@135.76.210.45 mkdir -p -m 775 /home/admin/reports/${ENV}/${VERSION}/UI/ expect { -re ".*es.*o.*" { exp_send "yes\r" exp_continue } -re ".*sword.*" { exp_send "Aa123456\r" } } expect eof spawn scp -pr ExtentReport admin@135.76.210.45:/home/admin/reports/${ENV}/${VERSION}/UI/${REPORT_NAME}/ expect { -re ".*es.*o.*" { exp_send "yes\r" exp_continue } -re ".*sword.*" { exp_send "Aa123456\r" } } expect eof EOF