如果 wget url 失败,则创建名为 url+fake.m3u8 的虚假文件

如果 wget url 失败,则创建名为 url+fake.m3u8 的虚假文件

*.m3u8我编写了一个脚本来检查文件中文件的存在.csv

如果没有链接,*.m3u8则不会下载文件。

怎么做:

  1. 如果文件下载错误,则创建一个名为“file”+“fake”.m3u8的空文件

例如:

wget http://ex.ua/files/heroes.m3u8` 

此 URL 不存在,因此创建文件 -heroesfake.m3u8

答案1

看一下如何检查命令是否成功?

例如:

#! /bin/bash
#
wget http://ex.ua/files/heroes.m3u8
if [ $? -ne 0 ]; then
    touch heroes-fake.m3u8
fi

相关内容