Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Copying a file across servers in DOS

by Kanji (Parson)
on Oct 19, 2010 at 02:07 UTC ( [id://866089]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # Note escaped slashes!
    system("xcopy dos.bat \\\\machine.b\\share\\")
    
  2. or download this
    use Shell qw(xcopy);
    xcopy("dos.bat", "\\\\machine.b\\share\\");
    
  3. or download this
    open LOCAL, "dos.bat" or die $!;
    open REMOTE, "//machine.b/share/dos.bat" or die $!;
    print REMOTE <LOCAL>;
    
    use File::Copy;
    copy("dos.bat", "//machine.b/share/dos.bat") or die $!;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://866089]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-20 02:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found