在Linux中,可以使用Shell腳本來下載數(shù)據(jù)。以下是一個(gè)簡(jiǎn)單的Shell腳本示例,用于使用curl命令下載數(shù)據(jù):
#!/bin/bash
# 設(shè)置下載鏈接和保存路徑
url="http://example.com/data.txt"
output="data.txt"
# 使用curl命令下載數(shù)據(jù)
curl -o $output $url
要使用這個(gè)Shell腳本,只需將上述代碼保存為一個(gè)腳本文件(例如download.sh
),然后在終端中運(yùn)行以下命令:
chmod +x download.sh
./download.sh
腳本將使用curl命令下載數(shù)據(jù),并將其保存為指定的文件(在這個(gè)例子中是data.txt
)。你可以根據(jù)需要修改下載鏈接和保存路徑。