I have logged on to a system with ssh and there is no scp present on both the systems. How to copy a file without using the scp program.
|
feedback
|
migrated from stackoverflow.com Jun 1 '11 at 9:07
This question came from our site for professional and enthusiast programmers.
|
To send a file:
Or:
To receive a file:
| |||
|
feedback
|
|
Try this:
| |||||
feedback
|
|
Besides piping the file to a remote | |||
|
feedback
|
rsync? – slhck Jun 1 '11 at 9:08ssh user@remotehost cat /path/to/remote/file > /path/to/local/file– n.m. Jun 1 '11 at 9:11