Ask a Question related to Ruby, Design and Development.
-
Lyle Johnson #1
[Q] Looking for the Ruby equivalent of this Unix command...
Is this:
File.syscopy(fromName, toName)
the equivalent of this:
$ cp -p fromName toName
?
Lyle Johnson Guest
-
Equivalent of 'DO' command in Flash
No .. actionscript is a compiled language .. not interpreted like lingo. That means only Flash MX knows how to understand actionscript .. the player... -
Perl equivalent of Ruby/DL?
Ruby/DL is a Ruby module that enables one to load a .DLL/.so and start using exported functions available in the DLL. It's a nice alternative of... -
Ruby Newbie's Question: Sockets - searching for equivalent to a perlprogramme
Hi all, I have been desperately trying to convert the following perl programme to Ruby. What should I use for the functions sockaddr_in (maybe... -
Oracle/SQL Server and Informix Equivalent Command
UNLOAD TO '/home/datadump/tablename.dmp' SELECT cField1, '~', cField2, (...) FROM sourcetable ?!! -----Original Message----- From: Ray M ... -
Unix equivalent of Dos commands
I am trying to send strings of data to a customer display connect to /dev/tty2a in Openserver 5.0.5. The use manual explains how to do this in... -
gabriele renzi #2
Re: [Q] Looking for the Ruby equivalent of this Unix command...
il Tue, 18 Nov 2003 11:31:16 -0600, Lyle Johnson
<lyle@users.sourceforge.net> ha scritto::
I think>Is this:
>
> File.syscopy(fromName, toName)
>
>the equivalent of this:
>
> $ cp -p fromName toName
>
>?
require 'fileutils'
FileUtils.cp from , to, :preserve=>true
gabriele renzi Guest



Reply With Quote

