Tagged Questions
The io-redirection tag has no wiki summary.
8
votes
1answer
343 views
I want to create a minifilter driver to transparently redirect disk i/o, but I'm having trouble getting started
A project I'm working on at the moment requires the implementation of a copy-on-w/m mechanism which will be used to redirect disk i/o in a similar manner to Deep Freeze or Sandboxie, on Windows XP. If ...
5
votes
3answers
610 views
unix shell, getting exit code with piped child
Let's say I do this in a unix shell
$ some-script.sh | grep mytext
$ echo $?
this will give me the exit code of grep
but how can I get the exit code of some-script.sh
EDIT
Assume that the pipe ...
5
votes
1answer
608 views
Unable to capture standard output of process using Boost.Process
Currently am using Boost.Process from the Boost sandbox, and am having issues getting it to capture my standard output properly; wondering if someone can give me a second pair of eyeballs into what I ...
5
votes
6answers
2k views
How do I capture all of my compiler's output to a file?
I'm building an opensource project from source (CPP) in Linux. This is the order:
$CFLAGS="-g Wall" CXXFLAGS="-g Wall" ../trunk/configure --prefix=/somepath/ --host=i386-pc --target=i386-pc
$make
...
5
votes
1answer
1k views
The '<' operator is reserved for future use (PowerShell)
I am using powershell and am trying to run the following command:
.\test_cfdp.exe < test.full | tee test.log
test.full is a script that mimics command line inputs to test_cfdp.exe. However, I ...
5
votes
8answers
709 views
In C how do I print filename of file that is redirected as input in shell
$cc a.c
$./a.out < inpfilename
I want to print inpfilename on stdout.
How do I do that ?
Thanks for the help in advance...
4
votes
3answers
143 views
Why does redirection + pipe ( 2>&1 |) merge both streams instead of moving stderr to stdout?
I read that redirections are processed left to right. So in this example
command 2>&1 | less
One would think that fd 2 is directed to fd 1 first and then fd 1 is sent to pipe. So fd 1 and 2 ...
4
votes
2answers
833 views
Cross-platform redirect of standard input and output of spawned process in native C/C++ (edit with solution)
I have a string command I'd like to execute asynchronously while writing to its input and reading its output. Sounds easy, right, the devil is in the cross-platform. I'm targeting both MSVC/Win32 and ...
4
votes
3answers
3k views
I/O redirection in eclipse?
Is it possible to use IO redirection in eclipse? I want to redirect standard input/output on the command line like java MyProgram <input.txt >output.txt, but I can't seem to get it to work in ...
3
votes
2answers
31 views
Using output of head -1
When I write
ls | head -1
the output is
file.txt
When I write
ls | head -1 > output.txt or
echo `ls | head -1` > output.txt
the file output.txt contains
^[[H^[[2Jfile.txt
This ...
3
votes
6answers
318 views
redirecting stdin _and_ stdout to a pipe
I would like to run a program "A", have its output go to the input to another program "B", as well as stdin going to intput of "B". If program "A" closes, I'd like "B" to continue running.
I can ...
3
votes
4answers
547 views
Perl: Redirect STDERR to a file without creating an empty file?
I'm redirecting STDOUT and STDERR in a perl script with:
open STDOUT, '>', $logfile or die "Can't redirect STDOUT: $!";
open STDERR, ">&STDOUT" or die "Can't dup for STDERR: $!";
saving ...
3
votes
2answers
265 views
Console output of a program including redirected stdin?
I have a command line program that I'm passing redirected input to, and piping to a file:
./program < some_input_file > some_output_file
This obviously writes the output not including the ...
3
votes
2answers
242 views
How to ignore program's output when using /usr/bin/time?
I want to know how long a program running, so I tried "/usr/bin/time ./program > /dev/null".
But soon I found it displays program's output to stderr. I tried "/usr/bin/time ./program > /dev/null ...
3
votes
4answers
177 views
How do these stream redirections work?
From this perldoc page,
To capture a command's STDERR and STDOUT together:
$output = `cmd 2>&1`;
To capture a command's STDOUT but discard its STDERR:
$output = `cmd 2>/dev/null`;
To capture a ...
3
votes
5answers
1k views
How can I redirect standard output to a file in Perl?
I'm looking for an example of redirecting stdout to a file using Perl. I'm doing a fairly straightforward fork/exec tool, and I want to redirect the child's output to a file instead of the parents ...
3
votes
2answers
284 views
unix shell, redirect output but keep on stdin
I'd like to have a shell script redirect stdout of a child process in the following manner
Redirect stdout to a file
Display the output of the process in real time
I know I could do something like
...
3
votes
6answers
3k views
Bash: redirect standard input dynamically in a script
I was trying to do this to decide whether to redirect stdin to a file or not:
[ ...some condition here... ] && input=$fileName || input="&0"
./myScript < $input
But that doesn't work ...
3
votes
1answer
830 views
Redirect Embedded Python IO to a console created with AllocConsole
I am having some trouble getting Python IO redirected to a console that I've allocated for my Win32 app. Is there a Python-specific stream that I need to redirect?
Here's more-or-less what I'm doing ...
3
votes
2answers
1k views
bash - redirecting of stdoutput and stderror does not catch all output
I am writing some testing scripts and want to catch all error output and write it to an error log as well as all regular output and write that to a separate log. I am using a command of the form
cmd ...
2
votes
3answers
68 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
2answers
91 views
Redirecting the output of a child process
There are several ways of redirecting the output of a child process:
using freopen(3)
using dup(3)
using popen(3)
...
What should one pick if all is wanted is to execute a child process and have ...
2
votes
2answers
125 views
How to read from std::cin until the end of the stream?
My problem is, that I want to read the input from std::cin but don't know how long the input is. Also I have to char and can't use std::string.
There are two ways I have to handle:
a) The user inputs ...
2
votes
1answer
86 views
redirecting result of running assembly code in linux to text file
I'm trying to write a Python script to test the output of some various code I've written in assembly against an expected output. However I am having difficulty redirecting the output into a file.
I ...
2
votes
3answers
174 views
Best Way to capture output from system command to a text file?
I’m trying to capture output from using Perl’s system function to execute and redirect a system command’s ouptut to a file, but for some reason I’m not getting the whole output.
I’m using the ...
2
votes
3answers
67 views
Redirect posix file calls in C
We have a "library" (a selection of code we would rather not change) that is written from the perspective that it has access to 2 files directly. It uses "open", "read" and "seek" posix calls directly ...
2
votes
3answers
275 views
How to use stdout and stderr io-redirection to get sane error/warning messages output from a program?
I have a program that outputs to stdout and stderr but doesn't make use of them in the correct way. Some errors go to stdout, some go do stderr, non error stuff goes to stderr and it prints way to ...
2
votes
4answers
165 views
Bash - interpreting the contents of a variable
How can I make Bash interpret the contents of a variable as I/O redirects and not simply pass those contents to the command being executed. Take this script for example:
#!/bin/bash
test "$1" == ...
2
votes
2answers
341 views
Print STDOUT/STDERR and write them to a file in Bash?
Is there a way to have Bash redirect STDOUT/STDERR to a file yet still print them out to the terminal as well?
2
votes
1answer
347 views
Redirecting STDOUT of a pipe in Perl
I feel as though there should be a simple way to do this, but searching around gives me no good leads. I just want to open() a pipe to an application, write some data to it, and have the output of the ...
2
votes
4answers
125 views
can a process create extra shell-redirectable file descriptors?
Can a process 'foo' write to file descriptor 3, for example, in such a way that inside a bash shell one can do
foo 1>f1 2>f2 3>f3
and if so how would you write it (in C)?
2
votes
2answers
473 views
Perl, redirect stdout but keep on parent
In perl, after fork()ing I can redirect a child's stdout to a file like so
open STDOUT,">",$filename or die $!
I'm wondering if there is a way of "copying it", keeping the stdout on the parent's ...
2
votes
2answers
151 views
Is there a way to make linux CLI IO redirection persistent?
I have multiple piped commands, like this:
find [options] | grep [options] | xargs grep [options]
Each one of them can potentially produce errors (permissions errors, spaces-in-filenames errors, ...
2
votes
4answers
1k views
How can I redirect the output of Perl's system() to a filehandle?
With the open command in Perl, you can use a filehandle. However I have trouble getting back the exit code with the open command in Perl.
With the system command in Perl, I can get back the exit code ...
2
votes
1answer
2k views
How to do proper Unicode and ANSI output redirection on cmd.exe?
If you are doing automation on windows and you are redirecting the output of different commands (internal cmd.exe or external, you'll discover that your log files contains combined Unicode and ANSI ...
2
votes
4answers
464 views
wget to memory (bypassing disk)
Is it possible to download contents of a website (a set of html pages) straight to memory without writing to disk? I have a cluster of machines with 24G ram each, but I'm limited by a disk quota to ...
2
votes
3answers
638 views
Why doesn't cl.exe generate any output when I call it from Perl?
I'm having a weird problem with running cl.exe that has me stumped. In a large VS2008 solution consisting of C/C++ projects, I have one project that runs some scripts to do some extra processing. ...
1
vote
2answers
28 views
conditional redirection in bash
I have a bash script that I want to be quiet when run without attached tty (like from cron).
I now was looking for a way to conditionally redirect output to /dev/null in a single line.
This is an ...
1
vote
2answers
61 views
New linux programmer
can someone explain to me what it means?
LOG=/etc/security/aixpert/log/aixpert.log
exec 1>>$LOG
exec 2>&1
I know that we are logging into a file... but what exactly it does? especially ...
1
vote
1answer
42 views
Redirecting the output of svnadmin dump to another server
I currently have a SVN repository on a server that is low in available disk space. I thus would like to migrate this SVN repository to a new server. Usually I would use the following command:
...
1
vote
3answers
87 views
unable to redirect output message in windows command prompt (cmd.exe)
greeting,
I tried to run the following command in Windows command prompt.
abc.exe >log.txt 2>&1
I'm expecting all output from "abc.exe" to be directed to "log.txt", but it doesn't work, as the ...
1
vote
1answer
106 views
In a WinForm process, how to detect when a command line child process is demanding input?
In a WinForm application that calls a third-party command line tool, there may be a time when the tool is expecting user input, such as asking if it should overwrite a file:
printf("%s already ...
1
vote
3answers
72 views
linux shell stream redirection to run a list of commands directly
I have this svn project... to get a list of unadded files (in my case, hundreds):
svn status |grep "^?"
outputs
? somefile.txt
? somefile1.txt
? somefile2.txt
I was recently introduced to sed... ...
1
vote
1answer
206 views
Repeatably Feeding Input to a Process' Standard Input
I have a (C#) console application which maintains a state. The state can be altered by feeding the application with various input through the console. I need to be able to both feed the application ...
1
vote
6answers
137 views
Bash script won't re-direct input to a subprocess
Here's a simplified example of a script I'm writing (doesn't work as is).
I want to direct STDOUT from my script to the STDIN of a subprocess.
In the example below I'm writing 'test' to STDOUT and ...
1
vote
3answers
422 views
Send string to stdin
Is there a way to effectively do this in bash:
/my/bash/script < echo 'This string will be sent to stdin.'
I'm aware that I could pipe the output from the echo such as this:
echo 'This string ...
1
vote
1answer
296 views
redirect output from a dos exe to vb.net form
i have an dos exe which take argument, perform its functions and display the output in dos.
i need to call the dos file from vb passing the argument without showing the dos window, and get the return ...
1
vote
4answers
593 views
Redirecting input of application (java) but still allowing stdin in BASH
I'm a little confused, I had this working yesterday, but it just stopped accepting the redirected stdin, almost magically.
set -m
mkfifo inputfifo
mkfifo inputfifo_helper
((while true; do cat ...
1
vote
2answers
364 views
How to implement linux pipeline in windows using C\C++
for example, in linux the following command
$ firstProgram | secondProgram
carries the output of firstProgram as an input to secondProgram
the basic code in C that makes it happen in linux is
...
1
vote
1answer
185 views
redirecting complete make output to a file
I want to redirect complete make output to a file.
I tried redirecting the stdout and stderr with the following command:
make >aks_file.txt 2>&1 &
But that is not redirecting the ...