similar to: CGI output

Displaying 20 results from an estimated 20000 matches similar to: "CGI output"

2010 Jun 10
2
Capturing buffered output from Rterm
In MS Windows I a) invoke Rterm from a batch file (test.bat) b) to execute commands from a script (m:\test.rsc) c) capturing output in a log file (m:\test.log) BUT if the script results in an error the error message is NOT written to the log file, leaving me problems when the error is from a complicated function. Simplified example:. test.bat ------------------------ REM ensure
2012 Dec 17
4
- problem with reboot or shutdown
hi all, I have a problem with my CentOS 6.3 distribution only when I restart or turn off the machine it does not restart properly. remains in both cases black screen and then I do not understand exactly what he's doing. grub after I hit send and then darkness. only after that forcement for a further time the power cycle then it works. the kernel version is 2.6.32-279.14.1.el6.i686 where is
2006 Aug 29
1
Capturing warnings with capture.output
Is there any way to include warnings in the output from capture.output? eg: a <- capture.output(warning("test")) all.equal(a, "Warning message: \n test ") Conceptually, this seems like redirecting stderr to stdout, or somehow changing warning to simple print it's output. I've had a look at tryCatch and using a warning handler, but this terminates execution at the
2015 Feb 01
2
Output to "raw console" rather than stdout/stderr?
In R, there's readline(), which is great because you can prompt the user, e.g. ans <- readline("Would you like to install Pandoc? [y/N]: ") without having to worry the message is intercepted by capture.output(), sink() or similar (which is used by dynamic report generators among other things). The message will always reach the user. (You can use sink(...,
2007 Apr 10
6
getting output of STDOUT in spec
Consider the following method: def name_to_terminal puts "Scott Taylor" end How would I spec this out? Scott
2006 Oct 11
1
smbclient sending output to stdout
I'm using smbclient 3.0.22-13.16-SUSE-SLES10. I'm using the smbclientparser Perl module to use smbclient from within my Perl scripts. Whenever I perform a GET on a file, smb outputs this line to stdout: Domain=[mydomain] OS=[Windows 5.0] Server=[Windows 2000 LAN Manager] This results in hundreds of mail messages in my local mail queue. How can I turn this off, so that smbclient
2001 May 04
1
wav output to stdout status?
Hi! The version of ogg123 (or perhaps libao I think) says that the wav output can't go to STDOUT. Is this feature supported already in the current CVS? Bye, Peter Surda (Shurdeek) <surda@bigfoot.com>, ICQ 10236103, +436505122023 -- The three Rs of Microsoft support: Retry, Reboot, Reinstall. <HR NOSHADE> <UL> <LI>application/pgp-signature attachment: stored
2013 Sep 23
1
Capture output of install.packages (pipe system2)
Is there any way to capture output (both stdout and stderr) from install.packages? Solutions like sink and capture.output don't work because the install.packages calls out to system2 which is executed in a separate process: test <- capture.output(install.packages("MASS")) The system2 function does have arguments stdout and stderr but afaik these cannot be controlled via
2008 Jun 05
1
[LLVMdev] Standard output binary mode on windows
Hello, Matthijs > why do you only set binary mode for stdout? Don't you have the same problem > when writing bitcode to file? No, all files are opened in binary mode. This is really ugly thing (stdout opened in text mode) which really hurt bunch of projects during porting, since fallout from such thing can be pretty subtle. -- With best regards, Anton Korobeynikov. Faculty of
2004 Aug 06
3
Taking output from lame and streaming it
Hi list, OK, I have managed to get somewhere, but now I am really stuck. I have taken the audio from esound and piped it to lame with something like <p>esdmon | lame -h -b 32 -x - - | o I have this nicely encoded mp3 stream being piped to stdout, and from there I have no idea how to get it to the icecast server. I dare say it could be done quite painlessly with libshout but I have no
2006 May 23
3
[LLVMdev] Binary output to cout on Windows
The solution (provided in Microsoft's documentation) is to add: #include <cstdio> #include <io.h> #include <fcntl.h> and run: int result = _setmode( _fileno(stdin), _O_BINARY ); if( result == -1 ) { std::cerr<<"Cannot set input mode to binary."<<std::endl; return 1; } result = _setmode( _fileno(stdout), _O_BINARY ); if( result == -1 ) {
2000 Dec 10
2
Oggenc ideas / source and request
Hello everybody, I've put some functions/modifications into the Ogg Vorbis encoder source. (The new functions are in the first 500 lines of the oggenc.c, some definitions are in the oggenc.h) I hope, you can use it. Here is the full source (same source on 3 locations): http://www.geocities.com/mpxplay/oggenc.zip http://www.tar.hu/mpxplay/oggenc.zip http://www.extra.hu/galileog/oggenc.zip
2018 Mar 22
2
SCP verbose output truncated
Fedora 27 x86_64. openssh-7.6p1-5.fc27.x86_64. If I run a simple command like, "scp -v file target:", I get a new prompt before all the output appears. Running interactively, I see all that output, though some of it is after the prompt. But if I put this command in a script, the output is truncated at the point where my prompt would have appeared interactively. I see a message like,
2020 Mar 13
7
pipe(): input to, and output from, a single process
hi. i'd like to instantiate sed(1), send it some input, and retrieve its output, all via pipes (rather than an intermediate file). my sense from pipe and looking at the sources (sys-unix.c) is that is not possible. is that true? are there any thoughts of providing such a facility? cheers, Greg
2010 Aug 04
1
[PATCH] Send trace output to stderr
Trace output sent to stdout can be lost in the event of a crash due to buffering. This patch sends it to stderr instead. --- src/generator.ml | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/generator.ml b/src/generator.ml index 52e7aba..db674a6 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -6174,7 +6174,7 @@ check_state (guestfs_h
2007 Mar 02
2
bending openssh output
Hi there. I am not sure if this is the right place to address my question, but I need someone how knows about the channel system of openssh. At the moment, I try to modify the openssh source to fit to my needs. Therefore I modified the openssh source so it can be called from my source like a function (simply changed "void main()" to "void ssh()"). This works perfect for the
2011 Jul 05
1
Executing a function several time, how to save the output
Hi all, I try to exceute a function "myfun" that should use as input "input1.csv" and "input2.csv" . Then I try to save the output dat33 on a csv file (on per each time I execute input1..input 2 and so on). So my problem is how to finally obtain several csv file with "ggt1.csv", "ggt2.csv". The program creates ggt1.csv but BUT when runs
2019 Jun 02
1
odd msg at top of upsc output
On May 31, 2019, at 11:19 AM, Gene Heskett wrote: > > On Friday 31 May 2019 10:08:02 am Charles Lepple wrote: >> >> To be honest, I thought we had fixed this a while ago (NUT 2.7.1), but >> I guess it popped back up again: >> https://github.com/networkupstools/nut/issues/30 > > nut 2.7.2. Built from the tarball. Some option I should have configured > it
2011 Oct 05
3
suppressing stderr output from system() calls
Dear list, I'm trying to suppress/redirect/squash the output from commands like install.packages, or download.file. The problem is that none of: sink(..., type="message"), sink(..., type="output"), capture.output, suppressMessages are quite doing the trick. Output gets written to the stderr stream, despite any combination of the above suppression commands. According to
2006 May 23
0
[LLVMdev] Binary output to cout on Windows
On Tue, 23 May 2006, Michael Smith wrote: > The solution (provided in Microsoft's documentation) is to add: > #include <cstdio> > #include <io.h> > #include <fcntl.h> > and run: > int result = _setmode( _fileno(stdin), _O_BINARY ); > if( result == -1 ) > { std::cerr<<"Cannot set input mode to binary."<<std::endl; return 1; >