You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
333 B
11 lines
333 B
9 months ago
|
#!/bin/bash
|
||
|
function log() {
|
||
|
local time_now=`date '+%Y-%m-%d %H:%M:%S'`
|
||
|
echo "$time_now [download] [info] $1" >> /mnt/youtube_prod/running.log
|
||
|
}
|
||
|
|
||
|
cd /mnt/youtube_prod/sftp
|
||
|
# /mnt/youtube_prod/start_download.sh
|
||
|
log "开始执行sftp..."
|
||
|
python3 ./sftp.py --local="/mnt/tmp_srt_file" --logDir="./logs"
|
||
|
rm -rf /mnt/tmp_srt_file
|