溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何用Shell腳本實現(xiàn)批量下載資源并保留原始路徑

發(fā)布時間:2021-09-28 14:24:52 來源:億速云 閱讀:717 作者:iii 欄目:開發(fā)技術

這篇文章主要介紹“如何用Shell腳本實現(xiàn)批量下載資源并保留原始路徑”,在日常操作中,相信很多人在如何用Shell腳本實現(xiàn)批量下載資源并保留原始路徑問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”如何用Shell腳本實現(xiàn)批量下載資源并保留原始路徑”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

示例資源列表
如url.txt:

代碼如下:

https://cache.yisu.com/upload/information/20210312/310/133260.png
https://cache.yisu.com/upload/information/20210312/310/133261.png
https://cache.yisu.com/upload/information/20210312/310/133264.png
https://cache.yisu.com/upload/information/20210312/310/133265.png
https://cache.yisu.com/upload/information/20210312/310/133266.png
https://cache.yisu.com/upload/information/20210312/310/133267.png


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

腳本如下

如download.sh

代碼如下:

#!/bin/bash
# desc: download resource
# author: 十年后的盧哥哥

mydir=`pwd`

while read line
do
{
    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 < $1
exit 0

這里有幾點要注意:

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

代碼如下:

tr -d '\r'


2、取資源名:

代碼如下:

${picdir##*/}


3、取資源路徑:

代碼如下:

${picdir%/*}


運行

代碼如下:

sh download.sh url.txt

到此,關于“如何用Shell腳本實現(xiàn)批量下載資源并保留原始路徑”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注億速云網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI