Sto scaricando un file usando il wget
comando. Ma quando viene scaricato sul mio computer locale, voglio che venga salvato con un nome file diverso.
Ad esempio: sto scaricando un file da www.examplesite.com/textfile.txt
Voglio usare wget
per salvare il file textfile.txt
nella mia directory locale come newfile.txt
. Sto usando il wget
comando come segue:
wget www.examplesite.com/textfile.txt
wget -o
genererà le informazioni del registro in un file. wget -O
produrrà il contenuto scaricato. man wget
ti dirò tutto questo e altro.
wget -O newfile.txt
.