Last active
August 29, 2015 13:56
-
-
Save NicolaeNMV/9055012 to your computer and use it in GitHub Desktop.
Some very useful commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Connect to ssh throughout a socks server at localhost:9150 | |
ssh -o "ProxyCommand /usr/bin/nc -x localhost:9150 %h %p" user@hostname | |
# Download something and resume. Useful when "Copy cURL" from chrome://inspector | |
curl -C - -o "some_name" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment