A Bug in the System:
Tuesday, September 8, 2015
Another Way to Transfer Files Over the Network in Linux
Transfer files with nc when SimpleHTTPServer python module is not available.
nc -l <port_to_listen_on> < <file to transfer>
nc <ip_of_server> <port> > <output_file_name>
example,
nc -l 9000 < logs.zip
nc 192.168.1.3 > logs.zip
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
What's in my Bag? EDC of a Tester
How to Invoke a Shell Script using WSO2 ESB
whats covered: creating a custom mediator to invoke shell scripts for ESB 4.8.1. 1) Create a Mediator Project Generate a medi...
An Introduction to mind maps for testers
Why? Similar to identifying test conditions and done as part of the test analysis activity. Better medium to convey the test scope to other ...
How to create custom locator classes in Selenium and a few reasons why you should
Selenium supports many different HTML element locator strategies such as CSS, class, ID, and XPath. Xpath in my opinion is provides you with...
No comments:
Post a Comment