Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
6k 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.
7
votes
1answer
356 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 ...
5
votes
4answers
173 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 ...
5
votes
3answers
164 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 ...
3
votes
4answers
145 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 ...
2
votes
3answers
88 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
69 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 ...
2
votes
3answers
80 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 ...
2
votes
1answer
107 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, ...
2
votes
1answer
125 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]] ...
2
votes
1answer
988 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 ...
1
vote
0answers
19 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 ...
1
vote
2answers
55 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
3answers
241 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
54 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
147 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 ...
0
votes
2answers
144 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 ...
0
votes
1answer
80 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 ...
0
votes
2answers
61 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 ...
0
votes
2answers
799 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
105 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: > ...
0
votes
3answers
253 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 ...