Tagged Questions

tee is both a Linux syscall and a user program that duplicates the contents of a pipe. The tee syscall is effectively a userland function call that copies memory or remaps pages in a buffer owned by the kernel.

learn more… | top users | synonyms

28
votes
10answers
19k views

How do I duplicate sys.stdout to a log file in python?

Edit: Since it appears that there's either no solution, or I'm doing something so non-standard that nobody knows - I'll revise my question to also ask: What is the best way to accomplish logging when ...
10
votes
3answers
3k views

bash: tee output AND capture exit status

I want to execute a long running command in bash shell, and both capture its exit status, and tee its output. So I do this command | tee out.txt ST=$? The problem is that the variable ST captures ...
8
votes
5answers
1k views

How to replicate tee behavior in python when using subprocess?

I'm looking for a Python solution that will allow me to save the output of a command in a file without hiding it from the console. FYI: I'm asking about tee (as the Unix command line utility) and not ...
7
votes
2answers
67 views

Is the result of itertools.tee() thread-safe (Python)

Suppose I have this Python code: from itertools import count, tee original = count() # just an example, can be another iterable a, b = tee(original) The question is, will there be any problem ...
7
votes
3answers
686 views

How can I compose output streams, so output goes multiple places at once?

I'd like to compose two (or more) streams into one. My goal is that any output directed to cout, cerr, and clog also be outputted into a file, along with the original stream. (For when things are ...
6
votes
4answers
284 views

Piping command output to tee but also save exit code of command

I have a shell script in which I wrap a command (mvn clean install), to redirect the output to a logfile. #!/bin/bash ... mvn clean install $@ | tee $logfile echo $? # Does not show the return code ...
6
votes
4answers
1k views

How can I gzip standard in to a file and also print standard in to standard out?

I want to execute a command, have the output of that command get gzip'd on the fly, and also echo/tee out the output of that command. i.e., something like: echo "hey hey, we're the monkees" | gzip ...
4
votes
2answers
141 views

stdout to file1, stderr to file2, both correctly interleaved to stdout and file

Given a third-party program, how would one simultaneously: write stdout to z.stdout write stderr to z.stderr pass exit codes appropriately write both in correct interleaved order to stdout Here's ...
4
votes
2answers
196 views

unix `tee` - chain of commands

In a unix environment, I want to use tee on a chain of commands like so $ echo 1; echo 2 | tee file 1 2 $ cat file 2 Why does file only end up as having the output from the final command? For the ...
4
votes
5answers
548 views

How can I implement 'tee' programmatically in C?

I'm looking for a way in C to programmatically (ie, not using redirection from the command line) implement 'tee' functionality such that my stdout goes to both stdout and a log file. This needs to ...
4
votes
7answers
1k views

tee and exit status

Guys, is there an alternative to "tee" which captures STDOUT/STDERR of the command being executed and exits with the same exit status as the processed command. Something as following: eet -a some.log ...
4
votes
6answers
2k views

Unix: confusing use of the Tee -command

Manual states that the tee is a "pipe fitting"-tool. The cases [1] confuse me: 1. case echo "foo bar" | sudo tee -a /path/to/some/file 2. case :w !sudo tee % It is hard to understand the logic ...
3
votes
1answer
90 views

python unable to detach process when teed. How to span background process and exit with no wait?

I started with a simple testcase: cat foo2.py #!/usr/bin/python import subprocess, sys, os def alert(): subprocess.Popen ("xterm &", shell=True, stdin=None, stdout=None, stderr=None, ...
3
votes
3answers
2k views

bash: redirect (and append) stdout and stderr to file and terminal

To redirect (and append) stdout and stderr to a file, while also displaying it on the terminal I do this: command 2>&1 | tee -a file.txt However, is there another way to do this such that I ...
3
votes
3answers
92 views

Why tee’d variables aren’t visible in later scripblocks?

Someone knows for which strange reason Powershell doesn't show de 'tee'd' variable in the following snippet? # a.txt contains any text cat a.txt | tee -variable foovar | % { 'value of foovar: ' + ...
2
votes
6answers
65 views

bash tee remove color

I'm currently using the following to capture everything that goes to the terminal and throw it into a log file exec 4<&1 5<&2 1>&2>&>(tee -a $LOG_FILE) however, I ...
2
votes
2answers
85 views

Send stdout to file no tee

I am working on Windows XP, and I was wondering is there anyway to get the output from stdout and write it to a file. I need to be able to write to the console and a file, but using something like tee ...
2
votes
1answer
114 views

How do I redirect both stderr and stout to multiple locations?

I need to execute a command in a bash script (on freebsd6), and I need to have both the stderr and stdout of the command sent to the console, a log file, AND to a bash variable. So, without any ...
2
votes
1answer
54 views

File in-place editing with tee behaving differently on different unixes

A coworker was experimenting with file truncation in a bash shell script: extract two first bytes out of a binary file. The following worked fine on BSD/OS X ("12" in output) but not on Linux (output ...
2
votes
1answer
228 views

TAP::Harness perl tests tee output

I am running my tests using TAP::Harness , when I run the tests from command line on a Linux system I get the test results on STDOUT as it is run but when i try to capture the output to a file as well ...
2
votes
1answer
303 views

Writing to multiple file descriptors with a single function call

I had a use case for a group chat server where the server had to write a common string to all clients' socket. I had then addressed this by looping through the list of file descriptors and writing the ...
2
votes
1answer
415 views

PowerShell removing console message colors when using tee-object

Is there any way to stop PowerShell from removing console message colors when using tee-object? When I run without tee-object I get the nice error and verbose powershell message colors like this: ...
2
votes
2answers
470 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
3answers
217 views

Is the order that tee prints to stdout guaranteed?

You can split a pipe using the tee command under linux as follows printf "line1\nline2\nline3\n" | tee >(wc -l ) | (awk '{print "this is awk: "$0}') which yields the output this is awk: line1 ...
2
votes
2answers
256 views

Troubleshooting SIGTERMs with tee on a cluster within SGE jobs

I have some legacy scientific code running on a Rocks cluster, with SGE. I have an application-specific job submission script that generates qsub scripts (i.e. the script which Sun Grid Engine takes ...
2
votes
1answer
1k views

PowerShell 1 is not capturing batch file output with tee

PowerShell can call commandline batch files. PowerShell script output can be recorded with the "tee" command. But the tee command does not record the output of batch files inside a PowerShell script ...
2
votes
4answers
1k views

How to redefine clog to tee to original clog and a log file?

I saw a useful start here: http://www.cs.technion.ac.il/~imaman/programs/teestream.html And it works great to make a new stream which goes to both clog and a log file. However, if I try to redefine ...
2
votes
7answers
1k views

printing on screen and a text file

I need to dump the certain things into a text file and same has needs to be displayed on screen. (I'm telling about a C program utiltiy) The menu option looks like following, 1. display AA ...
1
vote
5answers
147 views

Unix: How can I prepend output to a file?

Specifically, I'm using a combination of >> and tee in a custom alias to store new Homebrew updates in a text file, as well as output on screen: alias bu="echo `date "+%Y-%m-%d at %H:%M"` \ ...
1
vote
2answers
189 views

Getting a shell error code from curl in Jenkins while still displaying output in console

I am using a shell script in Jenkins that, at a certain point, uploads a file to a server using curl. I would like to see whatever output curl produces but also check whether it is the output I ...
1
vote
2answers
130 views

Using tee in a bash script (on Solaris)

I'm trying to build a simple log file along with a running script that I've hacked together. The lines in question look like the following: TEE="/usr/bin/tee" TO_LOG="/usr/bin/tee >> ...
1
vote
2answers
316 views

Redirecting file descriptor 3 with tee

I wrote this script some months ago, and now rereading it, I'm unable to decipher what I meant by this line: sudo rsync -xPRSaz --rsync-path='sudo rsync' maeve@macbook:/ macbook/ 3>&1 ...
1
vote
4answers
369 views

Force `tee` to run for every command in a shell script?

I would like to have a script wherein all commands are tee'd to a log file. Right now I am running every command in the script thusly: <command> | tee -a $LOGFILE Is there a way to force ...
1
vote
1answer
176 views

how itertools.tee works, can type 'itertools.tee' be duplicated in order to save it's “status”?

All, pls see below test code about itertools.tee: li = [x for x in range(10)] ite = iter(li) ================================================== it = itertools.tee(ite, 5) >>> ...
1
vote
4answers
427 views

Cheat sheet exhibiting bash shell stdout/stderr redirection behavior

Is there a good cheat sheet demonstrating the many uses of BASH shell redirection? I would love to give such a thing to my students. Some examples I'd like to see covered: cmd > output_file.txt ...
1
vote
3answers
4k views

python stdout flush and tee

The following code ends with broken pipe when piped into tee, but behave correctly when not piped : #!/usr/bin/python import sys def testfun(): while 1: try : s = ...
0
votes
1answer
23 views

why won't Tee write all output being given (Bash)?

I've run into a problem which I don't know the cause of. I guess the easiest way to explain is by a code example: test () { echo "This will be printed to the file" #But the output of rsync ...
0
votes
2answers
28 views

Losing output from ruby while attempting to tee (screen and file)

I've got some code that I cobbled together from hints found that worked. But something is going wrong, and I am baffled. Nothing is sent to the screen, and file is empty. Here's the program: ...
0
votes
2answers
56 views

Can I echo my password to two commands?

I'd like to login to a remote machine, and mount my home dir there with a single command. I tried to do it with: echo myPassword | tee "sshfs boriskh@85.143.104.141:/share/home/boriskh ...
0
votes
2answers
24 views

tee to 2 blocks of code?

I am trying to use the tee command on Solaris to route output of 1 command to 2 different steams each of which comprises multiple statements. Here is the snippet of what I coded, but does not work. ...
0
votes
2answers
64 views

How to display the ouput text in the DOS command line while redirecting the output text in a file?

Currently I have a make file that will build my software using gnumake and currently I redirect my output text(like build logs, warnings, errors) in a file. But now I think it's very helpful to also ...
0
votes
1answer
44 views

A simple way to add pipes to tee-d file

I'm trying to record the output of a command with post processing to clean things up (like removing ansi escape codes to a file while outputing the command to screen) (command is minicom which ...
0
votes
0answers
180 views

tee command to log every output on /dev/pts/0 to a log file [closed]

I want to write a shell script which will run in background and will redirect the output of every command to a log file. Can somebody suggest me some way. I know that I can use pipe to log every ...
0
votes
3answers
125 views

Pipe with `tee` in a `for` loop

This is probably a newbie's escaping problem. I'm trying run command in a for loop like this $ for SET in `ls ../../mybook/WS/wsc_production/`; do ~/sandbox/scripts/ftype-switch/typesort.pl ...
0
votes
3answers
124 views

Use tee (or equivalent) but limit max file size or rotate to new file

I would like to capture output from a UNIX process but limit max file size and/or rotate to a new file. I have seen logrotate, but it does not work real-time. As I understand, it is a "clean-up" job ...
0
votes
1answer
342 views

Shell script re-directing output with tee command buffers output in some cases and not in others

I've simplified a shell script down to two commands: Terminal A (Redirect STDIN to a named pipe): tee -a >>pipe Terminal B (Read from the pipe used above): tail -f pipe The results I ...
0
votes
1answer
256 views

Python Process hangs until child process terminate using tee scheme

I have a following problem related to process synchronization. There is a python script startup.py, an executable maestro, and an executable tee. My python script startup.py starts maestro program ...
0
votes
6answers
257 views

bash obtain wc -l number and display in one command?

I'm pretty sure this is going to be obvious, but currently im doing this: count=`find $dir -type f \( -perm -007 \) -print 2>/dev/null | wc -l` This gets me the number i want, but dosen't ...
0
votes
5answers
656 views

How to get perl code output to STDOUT/STDERR and a file, in realtime and cross-platform?

I need to get the output of normal Perl code to the screen and into a logfile at the same time. However a problem is that the runtime of the tool can be hours. Using Capture::Tiny's tee that means the ...
0
votes
1answer
105 views

How do I tee a linux print file

How would it tee a linux print file to print to a printer with jet direct but also send a second text file to a windows folder using command line? Thanks Randy

1 2