I/O redirection is used in shell scripting. It makes a command line program read the keyboard input from or write the screen output to a file instead.

learn more… | top users | synonyms

2
votes
1answer
42 views

Misbehaving head with redirection

In a reply to Piping a file through tail and head via tee, a strange behaviour of head has been observed in the following construct when working with huge files: #! /bin/bash for i in {1..1000000} ; ...
0
votes
1answer
21 views

Redirect output to a file permission denied?

I want to do a simple redirection. When I do sudo curl <insert link here> > a.txt I want to take all of the data outputted by the curl into a.txt. However, I keep getting an error saying ...
0
votes
2answers
26 views

Redirect to file as well as to STDOUT in bash

I've a long bash script with multiple echo statements. I had a requirement to redirect bash script's output to a file without using redirection from bash shell. I could accomplish that by doing: ...
1
vote
1answer
68 views

Redirecting Python Interpreter's IO

I've written a simple debugger program that can execute a console program and send its output to "out" and "err" files and retrieve its input from an "in" file. Now, I want to extend its functionality ...
0
votes
2answers
51 views

Redirecting standard error to file and leaving standard output to screen when launching makefile

I am aware that for redirecting standard error and output to file I have to do: make > & ! output.txt Note I use ! to overwrite the file. But How can I redirect standard error to file and ...
0
votes
1answer
40 views

How to append lines to a new file with AWK

I am trying to append lines to some new files with awk in this way: #!/usr/bin/awk -f BEGIN { FS = "[ \t|]"; } { print $5 "\t" $13 "\t" $14 >> "./bed/" $5 ".bed"; } END { } New ...
0
votes
1answer
21 views

Pair wise input redirect - bash

I have a file called input.txt which has the following 0 1 1 2 2 3 3 4 What I would like to do is redirect two lines to a programing like so: i = 0; ./program < input.txt[i & ++i] in a ...
1
vote
1answer
88 views

redirect the stdout and stderr into a file

I want to redirect the output of a system call into a file.. I tried this.. #include <stdio.h> int main() { system("ls >> temp.txt"); return 0; } But this is only ...
0
votes
1answer
31 views

C programming - freopen append a ? to the filename

I am writing a c program that simulates the linux shell. In order to implement i/o redirection using redirection symbol i.e. the > symbol, i make use of freopen to replace stdout with file specified ...
0
votes
2answers
26 views

How to redirect the output of an invoked program to a file?

I've got some PHP code that, among other things, uses system() to call ffmpeg to encode a video. When I run this from a command line, I can redirect the output of the PHP script to a file in the ...
0
votes
2answers
38 views

How to catch the result of a background PHP script launched from inside PHP?

I've got some PHP code that I want to run as a background process. That code checks a database to see if it should do anything, and either does it or sleeps for awhile before checking again. When it ...
2
votes
2answers
67 views

How to display the output of a program both to a file and to the console(stdout)?

Say I have the following program that simply outputs "Hello World": //DEMO.c #include<stdio.h> int main() { printf("HELLO World"); } Now I want to display it both to the screen and to a file ...
0
votes
1answer
17 views

How to avoid race condition between Process termination notification and standard output redirection events?

In a very controlled fashion, I queue jobs in a ProcessJobManager that will process them in up to X concurrent processes at a time. After starting each process, I add it to a ...
2
votes
1answer
40 views

Piping standard output of tee effects output of its files

I came across the answer to How can I send the stdout of one process to multiple processes using (preferably unnamed) pipes in Unix (or Windows)? and was playing around with grep when I noticed a ...
3
votes
2answers
56 views

Redirection in PHP exec call creates empty file

It's quite simple, and I'm out of ideas. I'm sure there is a quick workaround. exec('echo 123 &> /var/log/123.log'); I'm sure it's not about the permissions, because the file 123.log is ...
2
votes
1answer
27 views

Check if script has been redirected

I have a bash script which must run differently if the output is being shown in the terminal, or if it is redirected to a file. It must do something like this (myscript.sh): if [ ...
1
vote
2answers
55 views

Redirecting System.out and appending to an existing file

I have a Java program which runs every 10 minutes. I want to capture a log of this process, for example consider (what essentially my program does): public static void someFunction() { ...
2
votes
2answers
56 views

About behaviors of redirections with named pipe, grep and file redirections

I have a question about the behavior of my bash command. I want to grep twice the same flux from stdout to 2 different files. To do so, I did: ./prog | tee >(grep -i 'grep1' > file1) | grep -i ...
1
vote
1answer
79 views

C#: can't ReadKey if my parent is a window application and it is redirecting my stdout

I am trying to catch the output from a child console app. When the parent is a console app everything works. When the parent is a windows app then the child fails to run with an exception from ...
-1
votes
2answers
65 views

Output redirection to file [closed]

When I'm redirecting a command output to a file with > the file is created in "DOS format", after which I have to invoke the dos2unix command on the file if I want the file to be unix formated. Is ...
0
votes
0answers
30 views

Output redirection inside/outside square brackets in Bash

Can somebody kindly clarify me if there is any difference concerning redirection between: [ $var1 -eq $var2 ] &> out.tmp and [ $var1 -eq $var2 &> out.tmp ] This is, redirecting ...
1
vote
0answers
82 views

Python readline module prints escape character during import

I am using the readline module with Python 2.7.3 with Fedora 17. I do not have this problem with Ubuntu 12.10. During import readline, an escape char is displayed. $ python -c 'import readline' ...
2
votes
1answer
123 views

How to redirect stdin to file in C with win32 API?

I am trying to redirect stdin to a file of my choosing, inside a C program ( win32 API) leaving the possibility of redirecting stderr or stdout aswell. I am writing a shell that I m running on ...
1
vote
1answer
41 views

When do I call flush() when dup'ing file descriptors?

I have a wrapper to redirect outputs when I call python python-wrapped C++. The basic idea is to use dup and dup2, which are the only ways I've been able to catch the printf outputs from the C++. ...
0
votes
1answer
54 views

redirect log outputs to another terminal

I have the following script file, which executes a Java main class and print some log data on the terminal. I want to redirect whatever prints this program to another terminal (for example /dev/pts/1, ...
0
votes
1answer
59 views

print redirection to multiple output destinations

I'm looking for a way to reduce some print clutter in some of my scripts. I want some output to go to a file, some to the screen, and some to both. It's the "some to both" that is eluding me. Is there ...
0
votes
1answer
42 views

Stdin redirection from Python

Say I have a program called some_binary that can read data as: some_binary < input where input is usually a file in disk. I would like to send input to some_binary from Python without writing to ...
1
vote
2answers
126 views

Can std::cin switch from accepting file input to keyboard input at run-time?

Suppose I have a program that accepts input from the keyboard, or alternatively accepts redirected input from a file such that: #include <iostream> using namespace std; int main() { string ...
2
votes
2answers
55 views

“No such file or directory” on simple bash redirection

Here is some code of mine: gzip -c $path > /var/www/wiki/backup/$now/$file.gz I'm gzipping the contents of $path (the path to a directory), and then sending the compressed file to ...
1
vote
3answers
149 views

UNIX Shell script - Saving input file name

Let's say I want to run a shell script as follows: ./script.sh < in.txt > out.txt How can I parse the name of the file stdin is redirected to, namely "in.txt" in this example? I know that if ...
1
vote
3answers
94 views

putting CURL result in a string and not STDOUT?

I have the following curl code, which make a request to website and retrieve data from it, it works well, but I want to store my data in a string and not in the output window. Any idea? #include ...
0
votes
1answer
70 views

Does lseek work on file redirection?

Usually lseek doesn't work on stdin. But, what if I run my program like this: ./a.out < filename Now stdin is a file and not keyboard. Will lseek work there? Can I do lseek(0, -1, SEEK_CUR) ...
1
vote
0answers
17 views

capture all proxytunnel output to a file

When I use an ssh command with proxytunnel I always get an output like Via xxx.yyy.zzz.aaa:pppp -> bbb.ccc.ddd.eee:443 -> remotesvr:22 before I get the output of my command I want to ...
2
votes
2answers
75 views

Why does shell=True work when piping commands together?

I have a couple subprocess instances I'd like to string together into a pipeline, but I am stuck and would like to ask for advice. For example, to mimic: cat data | foo - | bar - > result Or: ...
0
votes
1answer
42 views

Bash set -x echo redirects as well as commands

I am writing a Bash script where I want all commands to be echoed as they occur. I know that I need to use set -x and set +x to toggle this behaviour off and on, respectively (SOF post here). However, ...
-1
votes
1answer
104 views

Linux - Feed a command input with a file and delete the file while the command is running [closed]

Could some one tell me a single line command to feed my cmd input from a file and delete the same file while the command is still running? EDIT: By single line command I meant, performing this entire ...
1
vote
1answer
83 views

linux file descriptors confusion

Why does this not work? The way I see it you open fd 3 and its sent to dev nul. Then later your route fd 3 to fd 2. What I am trying to accomplish is using fd 3 in my scripts as a standard info ...
2
votes
3answers
123 views

How to execute process in Python where data is written to stdin?

I have a flag in my Python script which specifies whether I setup and use an external process or not. This process is a command called my_command and it takes data from standard input. If I was to run ...
1
vote
1answer
26 views

newbie: how can I include redirection in bash script?

I am trying to write a one-line bash script on the bash command prompt that involves input redirection: dbs$ for $f in *; do tr '\n' '' < $f; done but the '<' character is causing problem. Do ...
0
votes
0answers
28 views

In Windows redirecting the content from the standard output stream to a log file doesnt display the complete information

I am trying to run a server that serves licenses. it when started displays some log messages regarding the server status to show if its started or not before performing its operation. But the same log ...
1
vote
1answer
41 views

Bash ambiguous multiple redirect

For my Operating Systems class we have to implement a shell like program. I've encountered an example I don't know how to interpret: echo "test" > out1 > out2 After running this, out1 and ...
0
votes
1answer
140 views

How to create an execve() child process with the right tty settings to run 'vi' yet still redirect IO back to the parent process?

How do I get a forked, execve() child process that can run 'vi', etc. and redirect all IO to the parent process? I'm trying to pass shells through from an embedded Linux process to the PC software ...
0
votes
1answer
97 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
2answers
107 views

std in/out/err redirection in sub process of forked process

I'm writing a basic reverse shell in C: if(-1 == (myShell->pid = fork())) { PipeSet_close(&myShell->pipeSet); return RS_ERROR; } if(myShell->pid == 0) { /* close pipe ends ...
0
votes
1answer
113 views

bash echo string >> file does not work

I wrote the following script: for filename in `find . -name '*'.cpp | grep $IN_REGEX | grep -v $OUT_REGEX` do echo "Output file is $OUTPUT_FILE" count=`git log --pretty=format: --name-only ...
0
votes
0answers
32 views

stdout differs when redirected [duplicate]

So I was finding the output of this program and I wanted to redirect the output into a file for later use. I simply wrote a.out > temp and was surprised to find that temp differed from stdout from ...
2
votes
3answers
115 views

Equivalent of >nul 2>&1 (from Batch) in Perl?

I am using Cygwin Perl on Windows XP. Is there an equivalent of >nul 2>&1 of Batch in Perl? Please refer Here.
1
vote
2answers
215 views

Debian bash script works fine from command line; fails in crontab

I'm trying to use the DreamHost API (see here) to update a DNS entry using crontab. I have written the following bash script: #!/bin/bash dh_api_key=<my api key> dh_domain=<my fq ...
0
votes
1answer
54 views

Why do some commands require locks on Unix and others don't?

Recently, I'd been observing something interesting on our environment AIX 7.1. In an attempt to track down the issue, I created a small locking application in Java: import java.io.File; import ...
1
vote
2answers
80 views

How to set up two levels of redirection in bash?

In a bash script, I'd like to: output every logs into a file (loglowlevel.txt), but make only few of them visible in terminal (high-level), I have, say, 20 high-level logs and 60 low-level logs. ...

1 2 3 4 5