You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
356 B
Bash
18 lines
356 B
Bash
#!/bin/bash
|
|
#!/usr/bin/expect -f
|
|
|
|
USER=tes
|
|
MACHINE=150.50.51.240
|
|
export SSHPASS=tes
|
|
export WORK_DATE=`date +"%Y%m%d"`
|
|
|
|
echo `sshpass -e ssh -t -t $USER@$MACHINE sh /car_img/jar/CutMp4/01/imgDown.sh 01 $WORK_DATE`
|
|
|
|
echo "01 Movie End"
|
|
|
|
echo `sshpass -e ssh -t -t $USER@$MACHINE sh /car_img/jar/CutMp4/03/imgDown.sh 03 $WORK_DATE`
|
|
|
|
echo "03 Movie End"
|
|
|
|
exit
|