2
votes
1answer
33 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 …
4
votes
5answers
158 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 …
0
votes
1answer
165 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 …
0
votes
3answers
59 views
Broken pipes and tee?
The output of this echo is not passed on to the next command using pipe.
echo 'set foreign_key_checks = 0; truncate table saurabh.bus_services;' |
mysqldump --compact --no-create-info …
-4
votes
2answers
111 views
Vim: sudo errors in writing a selection
How can I circumvent the errors, such as E212 and E13, in the commands?
:'a,'bw set_question_tags.php
:'a,'bw >> set_question_tags.php
In some cases, even with Pavel's command:
…
3
votes
3answers
418 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 …
0
votes
2answers
358 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 = …
2
votes
6answers
288 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 …
0
votes
1answer
121 views
How to redefine clog’s rdbuf() to be a tee to the original rdbuf() of clog and that of a log file?
Hello,
Does anyone have an example of how to redefine the C++ built in clog to instead have a new associated rdbuf() which is processed to be a tee to the original clog.rdbuf() and the rdbuf() of a …
2
votes
4answers
289 views
How to redefine clog to tee to original clog and a log file?
Hello,
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 …
0
votes
1answer
46 views
Unable to use multiple outputs in Zsh without tee
I have the following in .zshrc
setopt multios
I am trying to do the following with the above option enabled in Zsh
ls -1 | tee file.txt | less
I run the following command unsuccessfully
ls -1 | …
2
votes
6answers
386 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 …
10
votes
5answers
2k 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 …
0
votes
2answers
89 views
How can I print intermediate results from a pipeline to the screen?
Duplicate http://stackoverflow.com/questions/570984/how-can-i-gzip-standard-in-to-a-file-and-also-print-standard-in-to-standard-out
I'm trying to count the lines from a command and I'd also like to …
0
votes
5answers
158 views
Where is the code for “tee” in Mac OS?
Where is the code for the terminal command 'tee' located in Mac OS?
[Added] Is it possible to read the exact code, that my mac is using (not the online codes)?
