linux 命令行下載網(wǎng)盤內容
使用wget
```bash
wget --load-cookies /tmp/cookies.txt "http://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'http://docs.google.com/uc?export=download&id=FILE_ID' -O- | sed -rn 's/.*confirm=([-A-Za-z_]+).*/\\n/p')&id=FILE_ID" -O FILE_NAME
```
請將`FILE_ID`替換為你的Google Drive文件ID,將`FILE_NAME`替換為你想要保存的文件名。
使用curl
```bash
curl -c ./cookie.txt "https://drive.google.com/uc?export=download&id=FILE_ID" > /dev/null
curl -L --cookie ./cookie.txt "https://drive.google.com/uc?export=download&id=FILE_ID" -o FILE_NAME
```
同樣,請將`FILE_ID`替換為你的Google Drive文件ID,將`FILE_NAME`替換為你想要保存的文件名。
利用Linux命令行工具從互聯(lián)網(wǎng)上獲取信息進行分析和處理。