国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 操作系統(tǒng) > 正文

shell腳本批量下載資源并保留路徑

2024-06-28 13:23:17
字體:
供稿:網(wǎng)友
shell腳本批量下載資源并保留路徑示例資源列表

如url.txt:

http://su.bdimg.com/static/superplus/img/logo_white_ee663702.pnghttp://su.bdimg.com/static/superplus/img/logo_white_ee663703.pnghttp://su.bdimg.com/static/superplus/img/logo_white_ee663701.pnghttp://su.bdimg.com/static/superplus/img/logo_white_ee663704.pnghttp://su.bdimg.com/static/superplus/img/logo_white_ee663705.pnghttp://su.bdimg.com/static/superplus/img/logo_white_ee663706.png

我們需要下載這些圖片,并保存在各自的文件夾下。

腳本如下

如download.sh

#!/bin/bash# desc: download resource# author: 十年后的盧哥哥mydir=`pwd`while read linedo{    if [ -n "$line" ]    then        cd $mydir        url=$(echo "$line" | tr -d '/r')        picdir=$(echo $url | sed -r 's/http://////g')        picname=$(echo ${picdir##*/})        picpath=$(echo ${picdir%/*})        mkdir -p $picpath        cd $picpath        wget -O $picname `echo $url`    fi}done < $1exit 0

這里有幾點(diǎn)要注意:

1、為了去掉文本文件中行末的換行符,要進(jìn)行刪除:

tr -d '/r' 

2、取資源名:

${picdir##*/}

3、取資源路徑:

${picdir%/*}
運(yùn)行
sh download.sh url.txt


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 广饶县| 元谋县| 麟游县| 温州市| 民县| 介休市| 吴江市| 大同市| 长顺县| 壤塘县| 石景山区| 兴山县| 平利县| 金门县| 齐河县| 漯河市| 广东省| 上蔡县| 苏尼特右旗| 南丹县| 兰西县| 集贤县| 临洮县| 垣曲县| 甘肃省| 佳木斯市| 大名县| 晋宁县| 黔西| 罗定市| 屏东市| 怀宁县| 苍梧县| 株洲县| 上饶县| 诏安县| 徐汇区| 夏河县| 巴林左旗| 偃师市| 体育|