mirror of https://github.com/cheat/cheat.git
Adding wget and curl cheats and updating git cheat
This commit is contained in:
parent
d9bce2f3c4
commit
6c9ac348b5
|
@ -0,0 +1,20 @@
|
|||
# To download a single file
|
||||
curl http://path.to.the/file
|
||||
|
||||
# To download a file and change its name
|
||||
curl -o newname http://path.to.the/file
|
||||
|
||||
# To download multiple files
|
||||
curl -O URLOfFirstFile -O URLOfSecondFile
|
||||
|
||||
# To limit the rate of a download
|
||||
curl --limit-rate 1000B -O http://path.to.the/file
|
||||
|
||||
# To download a file and pass HTTP Authentication
|
||||
curl -u username:password URL
|
||||
|
||||
# To download a file from a FTP server
|
||||
curl -u ftpuser:ftppass -O ftp://ftp_server/public_html/xss.php
|
||||
|
||||
# To download a file with a Proxy
|
||||
curl -x proxysever.server.com:PORT http://addressiwantto.access
|
|
@ -25,6 +25,7 @@ git remote add upstream git@github.com:name/repo.git # Set a new repo
|
|||
git remote -v # Confirm new remote repo
|
||||
git fetch upstream # Get branches
|
||||
git branch -va # List local - remote branches
|
||||
git branch -D branch_name # Delete the branch branch_name
|
||||
git checkout master # Checkout local master branch
|
||||
git merge upstream/master # Merge remote into local repo
|
||||
git show 83fb499 # Show what a commit did.
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
# 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 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 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
|
Loading…
Reference in New Issue