mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-16 08:58:35 +01:00
ed91f9fa37
* 'master' of github.com:ImmortalPC/cheat: [GREP,NMAP,RM,WGET] Add new cheats
35 lines
1 KiB
Text
35 lines
1 KiB
Text
# To download a single file
|
|
wget http://path.to.the/file
|
|
|
|
# To download a file and change its name
|
|
wget http://path.to.the/file -o newname
|
|
|
|
# To download a file into a directory
|
|
wget -P path/to/directory http://path.to.the/file
|
|
|
|
# To continue an aborted downloaded
|
|
wget -c http://path.to.the/file
|
|
|
|
# To download multiples files with multiple URLs
|
|
wget URL1 URL2
|
|
|
|
# To parse a file that contains a list of URLs to fetch each one
|
|
wget -i url_list.txt
|
|
|
|
# To mirror a whole page locally
|
|
wget -pk http://path.to.the/page.html
|
|
|
|
# To mirror a whole site locally
|
|
wget -mk http://site.tl/
|
|
|
|
# To download files according to a pattern
|
|
wget http://www.myserver.com/files-{1..15}.tar.bz2
|
|
|
|
# To download all the files in a directory with a specific extension if directory indexing is enabled
|
|
wget -r -l1 -A.extension http://myserver.com/directory
|
|
|
|
# Allows you to download just the headers of responses (-S --spider) and display them on Stdout (-O -).
|
|
wget -S --spider -O - http://google.com
|
|
|
|
# Change the User-Agent to 'User-Agent: toto'
|
|
wget -U 'toto' http://google.com
|