When you can't do ssh or rsync, but still want to quickly share and retrieve files. Most modern Unixes will have Python.
$ python -m SimpleHTTPServer
When specifying a port:
$ python -m SimpleHTTPServer 20000
After that, wget or curl from the side you want to get, as you like.
Recommended Posts