Sorry, the above link should read:
http://shfs.sourceforge.net
--
http://mail.python.org/mailman/listinfo/python-list
Best is shfs.
This uses the safety of ssh and allows you to mount filesystems on an
external computer locally with commands like mount & umount: shfsmount
& shfsumount.
http://shfs.sourceforge.net/
malv
--
http://mail.python.org/mailman/listinfo/python-list
"Thierry Lam" <[EMAIL PROTECTED]> writes:
> Let's say I have two linux machines with the following names:
> -linone
> -lintwo
>
> If I'm currently on linone and if I want to copy a bunch of files from
> lintwo into linone, how can that be done in a python script without
> using ftp?
Use scp.
I'll presume you have ssh, scp on both boxes
$ man ssh
$ man scp
$scp mydata.dat [EMAIL PROTECTED]:mydata.dat
--
http://mail.python.org/mailman/listinfo/python-list
Let's say I have two linux machines with the following names:
-linone
-lintwo
If I'm currently on linone and if I want to copy a bunch of files from
lintwo into linone, how can that be done in a python script without
using ftp?
Thanks
Thierry
--
http://mail.python.org/mailman/listinfo/python-li