I want to copy a file from my work computer: "1.2.3.4/home/tom/sample.txt" to my home computer (where I am now), "6.7.8.9/home/tom/work/sample.txt" How do I do this? I believe I use SCP to do so, but don't know the exact command. Thanks!! Tom Nielsen Neuro Logic Systems, Inc. 805.389.5435 x18 www.neuro-logic.com
On Dec 03, 2002, Tom Nielsen wrote:
I want to copy a file from my work computer: "1.2.3.4/home/tom/sample.txt" to my home computer (where I am now), "6.7.8.9/home/tom/work/sample.txt"
scp /home/tom/sample.txt 6.7.8.9:/home/tom/work/sample.txt Equally good: scp sample.txt 6.7.8.9:work/sample.txt Etc. etc. -- Mads Martin Jørgensen, http://mmj.dk "Why make things difficult, when it is possible to make them cryptic and totally illogic, with just a little bit more effort?" -- A. P. J.
On 3 Dec 2002, Tom Nielsen wrote:
I want to copy a file from my work computer: "1.2.3.4/home/tom/sample.txt" to my home computer (where I am now), "6.7.8.9/home/tom/work/sample.txt"
How do I do this? I believe I use SCP to do so, but don't know the exact command.
Thanks!!
scp sourcefile username@target_hostname:/path_where_you_have_write_permission e.c: ~$> scp sample.txt tom@6.7.8.9: this copies sample.txt to the home of tom on 6.7.8.9 Levente | Levente Janovszki | Bekes County Library JUST 4 lines 4 U | | e-mail:levi@bmk.hu | Bekescsaba, Derkovits sor 1. HUNGARY Zip: 5600 | | Linux. Just use it | * The operating system collapsed * | | w/o fear of panic: | * OK Cancel * |
participants (3)
-
Levente Janovszki
-
Mads Martin Joergensen
-
Tom Nielsen