Re: using scp to move files

2004-10-28 Thread diego
Well, I googled around a bit and found something: http://www.employees.org/~satch/ssh/faq/manpages/scp2_man.html you can see that this option is in 'scp2' (that uses ssh v2). The problem re-reading this is it's from ssh.com , not OpenSSH's package... and it seems (have no more time by now) it is

Re: using scp to move files

2004-10-27 Thread Ivan Teliatnikov
I recently migrated about 100GB of user accounts from one Solaris machine to another. I had better success of using rsync over ssh, see man file there is a couple of useful examples at the end. Regards, Ivan. On Tue, 26 Oct 2004, diego wrote: > I bet the issue is already solved, but I just re

Re: using scp to move files

2004-10-26 Thread diego
I bet the issue is already solved, but I just read the thread and wanted to give my 2 cents ;-) I searched for the move option in scp not few moths ago and I read somewhere (googling around) that scp -u did this, **if you had ssh v2**. But if you still have v1 ... you'd better simulate it as descr

Re: using scp to move files

2004-10-05 Thread martin f krafft
also sprach Cameron Hutchison <[EMAIL PROTECTED]> [2004.10.05.1024 +0200]: > and what about the other way? > > scp server:source dest && rm ??? scp server:source dest && ssh server rm source -- Please do not CC me when replying to lists; I read them! .''`. martin f. krafft <[EMAIL PROTEC

Re: using scp to move files

2004-10-05 Thread Cameron Hutchison
Once upon a time martin f krafft said... > also sprach Kamaraju Kusumanchi <[EMAIL PROTECTED]> [2004.10.04.1741 +0200]: > >I need to move some files from a server to client. I am planning to > > use scp for this. Using scp, I can only copy the files. But I want to > > move the files instead of

Re: using scp to move files

2004-10-05 Thread martin f krafft
also sprach Kamaraju Kusumanchi <[EMAIL PROTECTED]> [2004.10.04.1741 +0200]: >I need to move some files from a server to client. I am planning to > use scp for this. Using scp, I can only copy the files. But I want to > move the files instead of copying them. Any ideas? The manual of scp > does

Re: using scp to move files

2004-10-04 Thread PaulNM
Antonio Rodriguez wrote: scp file; rm file Uh, "scp file(s) && rm file(s)" is probably better since "&&" will only run the next command if the first one succeeds. It would be a shame to have scp fail for some reason, then delete your files. :) PaulNM -- To UNSUBSCRIBE, email to [EMAIL PROTECTED]

Re: using scp to move files

2004-10-04 Thread Kamaraju Kusumanchi
On Mon, 4 Oct 2004 12:13:25 -0700, Peter Hicks <[EMAIL PROTECTED]> wrote: > On Mon, Oct 04, 2004 at 03:41:43PM +, Kamaraju Kusumanchi wrote: > >Hi all > > Very simple question but I cannot find the answer in google > >(possibly wrong keywords). > > > > I need to move some files from a serve

Re: using scp to move files

2004-10-04 Thread Peter Hicks
On Mon, Oct 04, 2004 at 03:41:43PM +, Kamaraju Kusumanchi wrote: >Hi all > Very simple question but I cannot find the answer in google >(possibly wrong keywords). > > I need to move some files from a server to client. I am planning to >use scp for this. Using scp, I can only copy the files.

Re: using scp to move files

2004-10-04 Thread Pete Conkin
From: "Kamaraju Kusumanchi" <[EMAIL PROTECTED]> >I need to move some files from a server to client. I am planning to > use scp for this. Using scp, I can only copy the files. But I want to > move the files instead of copying them. Any ideas? The manual of scp > does not have any option for this

Re: using scp to move files

2004-10-04 Thread Antonio Rodriguez
On Mon, Oct 04, 2004 at 03:41:43PM +, Kamaraju Kusumanchi wrote: > Hi all >Very simple question but I cannot find the answer in google > (possibly wrong keywords). > >I need to move some files from a server to client. I am planning to > use scp for this. Using scp, I can only copy the

using scp to move files

2004-10-04 Thread Kamaraju Kusumanchi
Hi all Very simple question but I cannot find the answer in google (possibly wrong keywords). I need to move some files from a server to client. I am planning to use scp for this. Using scp, I can only copy the files. But I want to move the files instead of copying them. Any ideas? The manua