美文网首页
下载海豚传媒mp3脚本

下载海豚传媒mp3脚本

作者: 君淋天下 | 来源:发表于2019-01-20 16:26 被阅读0次
#! /bin/bash
wget    http://media.dolphinmedia.cn/  
cat index.html | grep 'http://media.dolphinmedia.cn/album/'  | grep 'entry-title' | cut -d'"' -f4  > url_list.txt

total=`cat url_list.txt | wc -l`;
i=1;
for x in `cat url_list.txt`;
do
   echo "total task $total,current task is $i";
   let i++;
   echo $x;
   curl $x | grep mp3 | cut -d '"'  -f14 >> mp3_url_list.txt;
done

total=`cat mp3_url_list.txt | wc -l`;
i=1;
for x in `cat mp3_url_list.txt`;
do
   echo "total task $total,current task is $i";
   let i++;
   wget `echo $x | cut -d "?" -f1`   -P mp3/;
done 

相关文章

网友评论

      本文标题:下载海豚传媒mp3脚本

      本文链接:https://www.haomeiwen.com/subject/rhgxjqtx.html