Ci sono momenti in cui dovrai scaricare file dalla riga di comando. Nella maggior parte delle distribuzioni, hai due strumenti:wget e arricciatura .
wget
Questo è un comando molto potente per scaricare semplicemente un file. Usa semplicemente URL wget per scaricare il file nella posizione corrente:
root@web [/]# wget https://ip.plothost.com/test
--2020-01-19 06:11:50-- https://ip.plothost.com/test
Resolving ip.plothost.com (ip.plothost.com)... 104.10.10.155
Connecting to ip.plothost.com (ip.plothost.com)|104.10.10.155|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 94371840 (90M)
Saving to: 'test'
100%[==============================================================================================================================>] 94,371,840 11.2MB/s in 8.3s
2020-01-19 06:11:58 (10.9 MB/s) - 'test' saved [94371840/94371840]
root@web [/]#
Per utilizzare un nome file personalizzato, il comando è wget URL -O nomefile .
arricciatura
Con il comando curl, puoi ottenere il contenuto del file o scaricare un file. Per ottenere il contenuto del file, utilizza curl URL :
root@web [~]# curl https://ip.plothost.com/testfile.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<TITLE>Test file PlotHost.com</TITLE>
</HEAD>
<BODY bgcolor="#EFEFEF">
Testing ...
</BODY></HTML>
root@web [~]#
Per scaricare un file, curl URL -o nomefile
root@web [/]# curl https://ip.plothost.com/test -o test_file
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 90.0M 100 90.0M 0 0 10.5M 0 0:00:08 0:00:08 --:--:-- 11.1M
root@web [/]#
Risorse:
pagina man di wget
pagina man di curl