The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
27 views

Ruby hash.delete(:key) deleting copies and clones as well

From what I understand, when you set an object = to another, it will always be a reference, so we have methods like .dup and .clone to actually create a copy of an object and not a reference. ...
0
votes
1answer
25 views

dup return error (c programming in linux)

I'm trying to create a simple program which simulates the "ls -l | tail -n 2" call in terminal. I'm using "fork" and "execvp" for that purpose. Well, here is the code: int main(int argc, char ...
0
votes
1answer
24 views

Cant find element in clone document

I am using Nokogiri (1.5.9 - java) in JRuby ( 1.6.7.2 ) to copy an XML template and edit it. I'm having problems finding elements in the cloned document. lblock = ...
1
vote
1answer
32 views

dup return value is always zero

I would to know why does dup always return zeroes in the following code (in which a file is opened, than 10 dup are done successively) : #include <stdio.h> #include <stdlib.h> #include ...
3
votes
2answers
43 views

How to understand the #dup and #clone operate on objects which referencing other objects?

I am not sure about the meaning of "...but not the objects they reference" in both the documantion of ruby and rubinus. In ruby-doc, there is the explanation of #clone and #dup behavior saying: ...
1
vote
1answer
38 views

Copy model instances in Rails with single table inheritance

I have BaseProject, ProjectTemplate and Project class ProjectTemplate << BaseProject; end class Project << BaseProject; end I would like to copy project_template attributes to a new ...
0
votes
1answer
94 views

IO redirection and buffer issues, fflush and c

for my class we are to implement a shell with output redirection. I have the output redirection working, except my first command is always corrupted see: $ echo this doesn't work H<@?4echo No ...
1
vote
1answer
203 views

In C, how do I redirect STDOUT_FILENO to /dev/null using dup2 and then redirect back to its original value later?

I have an assignment I'm working on and I'm having difficulty finishing it. The idea is to write a program if.c that executes one program and if that succeeds it executes the second program. I'm ...
3
votes
1answer
123 views

“dup” function, “more” and redirection

I have a problem with this little code for educational purposes. I can not understand how it works. #include <stdio.h> #include <fcntl.h> #define FNAME "info.txt" #define STDIN 0 int ...
1
vote
2answers
64 views

Confusion regarding usage of dup()

When we use dup to redirect STDOUT to a pipe we do: close(1); dup(fd[1]); close(fd[0]); close(fd[1]); execlp("ls","-al",(char *) NULL); but we are closing both ends end of the pipe. then how the ...
0
votes
2answers
75 views

Implementing a pipe in C?

I am trying to implement a simple shell. I fork processes this way: void forkProcess(char* cmd[]) { pid_t pid; char programPath[BUFFERLENGTH] = "/bin/"; strcat(programPath, cmd[0]); ...
1
vote
3answers
76 views

dup gives different results when hash is one vs. two dimensions

dup is shallow copy, so when doing this: h = {one: {a:'a', b: 'b'}} h_copy = h.dup h_copy[:one][:b] = 'new b' now h and h_copy is same: {:one=>{:a=>"a", :b=>"new b"}} yes, that right. But ...
0
votes
2answers
84 views

Duplicating a record with associated images using Carrierwave

I have an app which you can store order/invoices in. I'm building a simple feature where you can duplicate invoices for my customers. I wrote this method in my Order.rb model which: Takes the ...
1
vote
1answer
218 views

dup and dup2 commands

What I'm trying to do is that put the output of the ls command in a file, and then use grep command to read from that file and store it in a new file and based on the contents on that file, print ...
1
vote
3answers
357 views

Difference between creating a duplicate file descriptor using dup() and creating a hard link?

I just tried out this program where I use dup to duplicate the file desciptor of an opened file. I had made a hard link to this same file and I opened the same file to read the contents of the file ...
1
vote
1answer
163 views

Which method to define on a Ruby class to provide dup / clone for its instances?

I have a Pointer class with a single attribute :contents, that points to an object of class MyObject. class MyObject def hello; "hello" end end class Pointer attr_reader :contents def ...
3
votes
1answer
185 views

When to use dup, and when to use clone in Ruby? [closed]

What's the differences between ruby dup and clone method? describes the difference in the behavior of dup and clone. But when should I use dup, and when should I use clone instead? Examples from ...
6
votes
1answer
179 views

running “less” from perl pipeline

I am trying to set up arbitrary pipelines from Perl, in much the same way as a shell might. This has the desired effect, it's like "echo foo | sed s/oo/ar/": #!/usr/bin/perl use strict; use ...
0
votes
1answer
285 views

Duplicate a rails object with associations and paperclip attachments

I have an object with several associations. Some of these associated objects have paperclip-attachments stored at S3. If I duplicate the object and the associations it works fine but the attachments ...
3
votes
4answers
1k views

How to redirect the output of system() to a file?

In this C program #include <stdio.h> #include <fcntl.h> int main() { int file = open("Result", O_CREAT|O_WRONLY, S_IRWXU); dup2(stdout, file); system("ls -l"); return ...
0
votes
3answers
240 views

Saving/duplicating a file pointer/descriptor

I have a requirement where in there is a global FILE pointer/descriptor. One of the functions will read from this pointer/descriptor. The internal pointer associated with the FILE pointer/descriptor ...
23
votes
2answers
2k views

What's the differences between ruby dup and clone method?

I checked the doc of ruby 1.8.7 and it says: "In general, clone and dup may have different semantics in descendent classes. While clone is used to duplicate an object, including its internal state, ...
2
votes
1answer
375 views

windows8 - _dup,_dup2

I use win8 Consumer preview build 8250 for executing a program, which works OK on win7 The program uses the following macros/functions: #if defined(_WIN32) #include <io.h> #define ...
1
vote
1answer
401 views

How to replace STDIN, STDOUT, STDERR in ruby19

In ruby18 I sometimes did the following to get a subprocess with full control: stdin, @stdin= IO.pipe @stdout, stdout= IO.pipe @stderr, stderr= IO.pipe @pid= fork do @stdin.close STDIN.close ...
2
votes
2answers
2k views

Python: fork, pipe and exec

I want to execute a program in a python application, it will run in the background but eventually come to the foreground. A GUI is used to interact with it. But controls are offered via a console on ...
1
vote
2answers
2k views

dup, dup2, tmpfile and stdout in python

This is a follow up question from here. Where I want do go I would like to be able to temporarily redirect the stdout into a temp file, while python still is able to print to stdout. This would ...
3
votes
3answers
785 views

Redirect stdout from python for C calls

This is a follow up question from here specifically concerning its answer. From a python module I am calling a Hello World executable that simply prints Hello World to the stdout. I am interested ...
2
votes
1answer
205 views

Strange behaviour when redirecting stdout in C

I'm trying to redirect stdout to a file and then restore it back to original in C, but I'm facing the following strange issue - the following piece of code succesfully writes in stdout in stdout ...
5
votes
1answer
1k views

Ruby dup/clone recursively

I have a hash like: h = {'name' => 'sayuj', 'age' => 22, 'project' => {'project_name' => 'abc', 'duration' => 'prq'}} I need a dup of this hash, the ...
1
vote
2answers
223 views

Instance variable still references after 'dup'

I have an object of a class, and I want to duplicate it with dup. One of the instance variables is an array, and it seems to be referencing it. I thought dup actually created a DUPLICATE. Here's my ...
2
votes
3answers
298 views

why close() system call flushing the output?

Here is my code, #include<stdio.h> #include<stdlib.h> #include<sys/stat.h> #include<sys/types.h> #include<fcntl.h> #include<unistd.h> #include<errno.h> int ...
3
votes
3answers
2k views

Redirect STDOUT and STDERR to socket in C?

I am trying to redirect STDOUT AND STDERR to a socket. I did: if(fork() == 0) { dup2(newsock, STDOUT_FILENO); dup2(newsock, STDERR_FILENO); execvp(); } Somehow, it only showed the first ...
1
vote
1answer
374 views

dup2 a socket to a file

All, winter comes, plz keep warm and keep healthy. During the meditation about the work, I got some question about the function of fd dup2 . I create a socket server, and a client. the server send, ...
5
votes
4answers
2k views

Can someone explain what dup() in C does?

I know that dup, dup2, dup3 "create a copy of the file descriptor oldfd"(from man pages). However I can't digest it. As I know file descriptors are just numbers to keep track of file locations and ...
0
votes
1answer
97 views

Stream descriptor loss in fopen + stream _dup

I have the following code example (in windows): int fd = _dup(fileno(stdout)); freopen("tmp","w",stdout); printf("1111"); close(stdout); char buf[100]; FILE *fp; fp = fopen("tmp","r");//in this ...
1
vote
0answers
293 views

Error while testing assets : can't dup NilClass

I'm using rails 3.0.9 with ruby 1.9.2. I am doing a system that allow users to put items into different closets. One of the user's possibility is to copy an item of an other user into his own closet ...
3
votes
4answers
178 views

What is best practice in Ruby to avoid misusing assignment “=”?

I've been bitten a couple of times by forgetting that x = y in Ruby makes x refer to the same object as y; I'm too used to languages where it means, in Ruby terms, x = y.dup. Forgetting this, I ...
3
votes
1answer
230 views

How to copy nested arrays and making sure that the copy is a complete dup of the original

Is there an easy way to copy a nested Array so that every object in the array will be a 'dup' of the original? I recently run into this: irb(main):001:0> a = [[1,2],[3,4]] => [[1, 2], [3, 4]] ...
7
votes
1answer
863 views

Change read/write permissions on a file descriptor

I'm working on a linux C project and I'm having trouble working with file descriptors. I have an orphan file descriptor (the file was open()'d then unlink()'d but the fd is still good) that has ...
0
votes
2answers
3k views

redirecting stdout to pipe write end

I'm writing a little program, and here is what it should do. In the main process I have to create a new one and that one should execute another program which only does a printf("text"). I want to ...
0
votes
1answer
153 views

A bug in rails? About model inherited

My env: ruby-1.9.2-preview3; rails-3.0.0.beta3 class PostFather < ActiveRecord::Base def self.inherited(subclass) end end class Post < PostFather end In the console: > ...
2
votes
1answer
3k views

can't dup NilClass - Error

I am stuck in this error for quite sometime now and have hit a dead end. I get this totally unhelpful error can't dup NilClass This is the situation. I have one class which is in a relationship ...
5
votes
3answers
459 views

Duplicating an array of strings

arr = ["red","green","yellow"] arr2 = arr.clone arr2[0].replace("blue") puts arr.inspect puts arr2.inspect produces: ["blue", "green", "yellow"] ["blue", "green", "yellow"] Is there anyway to ...
1
vote
3answers
541 views

String copy using pipes

i have written the following code to copy a string "hello world" to another char array using fork and pipes instead of using standard library functions or standard i/o streams. The program is ...
20
votes
3answers
17k views

practical examples use dup or dup2

I know what does dup or dup2 do ,but I have no idea when it would be used. Any practical examples? Thanks.