1. 程式人生 > >Linux 的日常 tools

Linux 的日常 tools

tool prot 音樂 ref 選項 out 命令 -- 命令行工具

下載(命令行工具,只給出常用的命令說明)

wget

輕量快速的下載工具

  • 下載:wget [-O filename] [-c] url
    • O 選項:給下載的文件指定文件名。(不加這個,會使用默認文件名)
    • c 選項:斷點續傳

cURL

如果 wget 滿足不了你的需求,就用 curl

  • 下載:curl [-o filename] url
    • o 選項:和 wget 的 -O 一樣,是指定文件名。不過註意是小寫。

youtube-dl

最火的在線視頻/音樂下載工具,支持 Youtube、Bilibili、優酷、愛奇藝、網易雲音樂、QQ音樂等幾乎所有你用得到的網站。

  • 下載:
    • --proxy URL:Use the specified HTTP/HTTPS/SOCKS proxy. (protocol://hosts:port)

you-get 另一個比較火的視頻/音樂下載工具,如果 youtube-dl 下載失敗,可以試試這個。

Linux 的日常 tools