Command |
Description
|
wget https://www.somewhere495848.com/test.txt
|
Download a file
|
curl -LI https://www.google.com
|
Show Header Informations of URL
|
|
|
whois <host>
|
Show NS, DNS, Register about a host (e.g.: whois google.com)
|
host <host>
|
DNS Lookup of a host (e.g.: host google.com)
|
dig <host>
|
DNS Lookup of a host (verbose) (e.g.: dig google.com)
|
|
|
rsync -avz myfolder somehost:/var/www/
|
Sync a folder to a remote host and specific path
|
rsync -avz somehost:/var/www/ .
|
Sync from remote host and specific path to local folder
|
rsync -avz <dirSource> <dirTarget> |
Sync entire Folder (locally)
|
rsync -avz <dirSource>/ <dirTarget> |
Sync only contents of folder (locally)
|