Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
139 views

Peter Piper piped a Python program - and lost all his unicode characters

I have a Python script that loads a web page using urllib2.urlopen, does some various magic, and spits out the results using print. We then run the program on Windows like so: python program.py > ...
9
votes
3answers
1k views

Piping as interprocess communication

I am interested in writing separate program modules that run as independent threads that I could hook together with pipes. The motivation would be that I could write and test each module completely ...
8
votes
3answers
766 views

Python piping on Windows: Why does this not work?

I'm trying something like this Output.py print "Hello" Input.py greeting = raw_input("Give me the greeting. ") print "The greeting is:", greeting At the cmd line Output.py | Input.py But it ...
6
votes
2answers
270 views

Problem with piping commands in C

I'm trying to create a simple shell in C for Unix. I've been able to do all the parsing of commands and execution, but I'm having a problem with piping. I think the problem is that I'm not hooking ...
4
votes
2answers
423 views

Piping data between threads with Java

I am writing a multi-threaded application that mimics a movie theater. Each person involved is its own thread and concurrency must be done completely by semaphores. The only issue I am having is how ...
4
votes
2answers
170 views

C++ genetic programming: Invoking a linker/compiler, executing the compiled program and piping input / output

This is a generic question, and although I'm pretty sure some of it's parts have been answered I want opinions rather than a broad discussion. I intend to do a master thesis on evolutionary ...
4
votes
5answers
792 views

Combining echo and cat on Unix

Really simple question, how do I combine echo and cat in the shell, I'm trying to write the contents of a file into another file with a prepended string? If /tmp/file looks like this: this is a test ...
3
votes
3answers
134 views

Using the pipe() system call

I've been trying to use the pipe() system call to create a shell that supports piping (with an arbitrary number of commands). Unfortunately, I haven't had much luck using pipe(). After spending a few ...
3
votes
2answers
151 views

Piping into objects/properties/methods in PowerShell

In PowerShell, you can pipe into Cmdlets and into scripted functions. But is it possible to pipe into objects, properties, or member functions? For example, if I have a database connection object ...
3
votes
2answers
261 views

Bash's cat, while, let and pipe lead to strange scoping behavior

So here's my script : count=0 cat myfile | while read line do #some stuff... let count++ echo $count done echo $count The last echo statement output 0 instead of the number of lines in ...
3
votes
1answer
420 views

PowerShell ForEach / Piping confusion

I am using the TFS PowerTools Cmdlets in PowerShell to try to get at some information about Changesets and related WorkItems from my server. I have boiled the problem down to behavior I don't ...
3
votes
2answers
2k views

Pipe implementation

I am trying to implement a linux shell that supports piping. I have already done simple commands, commands running in background, redirections, but piping is still missing. I have already read about ...
3
votes
1answer
58 views

piping in UNIX doubt

In The Unix Programming Environment by K & P, it is written that " The programs in a pipeline actually run at the same time, not one after another. This means that programs in a pipeline can be ...
3
votes
3answers
287 views

Lisp chaining functions macro

Is there a ready made lisp macro that allows chaining (piping) of functions? I couldn't find one. I'll try to explain what I mean with this example. Instead of using let* with lots of unused ...
2
votes
2answers
109 views

Piping output from two tar processes into a single child

I can pipe two commands into a single child like so (Edit: actually you can't do it like this, see sarnold answers): (echo "1.1 2.2 3.3") && (echo "4.4 5.5 6.6") | cat which outputs 1.1 ...
2
votes
3answers
265 views

Piping Input using Java using command line

public class ReadInput { public static void main(String[] args) throws IOException { BufferedReader input = new BufferedReader(new InputStreamReader(System.in)); String x = null; ...
2
votes
2answers
241 views

C#: Foreign EXE input/output pipe from variable string

Currently my application takes in a text file/files, parses them into another file type and puts them on disk. I then call a secondary program (not mine) to process THAT text file into a third. The ...
1
vote
0answers
75 views

Email piping - local delivery failed

PROBLEM FIXED We fixed this problem, by putting Like so: #!/usr/local/bin/php -q<?php I'm setting up an email piping system on a cPanel server. The code I'm using works on one server (also ...
1
vote
1answer
81 views

PHP script can not write to file with email piping

I have a simple script written to process received email. Here are the tested scenarios: A. Script function is to send an email indicating an email was received at piped address. -tested by browser ...
1
vote
1answer
80 views

UnhandledExceptionFilter not called with redirected stderr output

I am having a problem hitting an UnhandledExceptionFilter set by SetUnhandledExceptionFilter() when the stderr is being redirected. There is an custom exception filter set by ...
1
vote
1answer
329 views

How to gZip content that's passed threw a piped readStream

Im currently working on a project that requires the content to be gZip-ed before it's sent back to the browser. Im currently using a simple read stream and piping the data to the response of a ...
1
vote
1answer
320 views

PHP - Filtering Email Body, Removing Reply Quotes

I'm working on an email piping script that needs to save just the reply content and not the original quoted email. I'm using a mime parser class ...
1
vote
1answer
93 views

Problem with piping emails to script

I have a script to capture emails that are piped to it, parse the parts and insert them into a database. The script works fine and I've tested it over and over forwarding my own email to it. ...
1
vote
2answers
209 views

Looking for linux application or command to pipe images to using grep and sed

I am trying to view an image automatically on a site. The following will download the desired image file successfully: wget $(wget -O - myURL | grep myPattern | sed myScript) When I try piping to ...
1
vote
1answer
285 views

CPanel Email Piping to PHP

I have created a pipe script in CPanel and have placed the hashbang:#!/usr/bin/php -q at the beginning of my script. The script does run and places a log of the email into a table in my DB as it ...
1
vote
2answers
649 views

Making C code plot a graph automatically

I have written a program which writes a list of data to a '.dat' file with the intention of then plotting it separately using gnuplot. Is there a way of making my code plot it automatically? My ...
0
votes
2answers
52 views

How do I substring piped output from grep in Linux?

I'm trying to write a script to login to a Drupal website automagically to put it into maintenance mode. Here's what I have so far, and the grep gives me back the line I want. curl ...
0
votes
2answers
45 views

Redirecting input and output files on Unix and C++ using stdio

I need to do this: $ ./compiledprog.x < inputValues > outputFile so that I read from the file inputValues which for our case might just be \n separated int values or whatever. Then anything ...
0
votes
1answer
12 views

crossfading a group of audio files with sox splice

I am able to join and crossfade two audio files using SoX, like so: sox file1.wav file2.wav outfile.wav splice -q `soxi -D file1.wav`,0.5 where the soxi substitution is fetching the duration of ...
0
votes
1answer
49 views

Bash piping in OSX Lion prompts command not found, sometimes

in osx lion: du -h | sort -nr -bash:  sort: command not found which sort /usr/bin/sort The wierd thing is I tried reproducing the error and it seems to be totally random. My PATH echoed: ...
0
votes
0answers
49 views

How can I use ISPConfig 3 to pipe e-mails of a specific address to an external script?

Our team is developing an application, where performance is most important. We want to handle bounced e-mails from PHP, so I created a script, which reads the e-mail including its headers from STDIN, ...
0
votes
1answer
53 views

Email piping in PHP like Craigslist - How do I associate real emails?

I have seen some examples of php scripts that read email headers and parse out data to send out a new email to the real email address. One question I have is....how do I associate alias and real ...
0
votes
1answer
60 views

Iterative piping implementation for linux in c

I know this question gets asked a lot but I am still really confused as to how to go about fixing my problem. I have attempted to write code that handles command line input for the possibility of ...
0
votes
1answer
97 views

piping to awk hangs

I am trying to pipe tshark output to awk. The tshark command works fine on its own, and when piped to other programs such as cat, it works fine (real time printing of output). However, when piped to ...
0
votes
1answer
140 views

How To Make PHP Multi-Threading Flow Instead Of Waiting For Completion

I am using the following CURL Multithreading to add multi-threading to PHP processes: function multithread_it($url,$threads){ $started=0; while ($started<$threads){ $ch[$started] = ...
0
votes
1answer
208 views

How to filter Apache virtual host listing using grep

I have an Apache server configured with many virtual hosts and would like to be able to filter them using grep like so.. # httpd -S | grep "myStr" .. however, this approach doesn't work - I'm still ...
0
votes
3answers
65 views

Does running a batch file from java program destroy piping?

I'm trying to run a batch file from within my Java program, but I'm getting some strange behavior. Process p = Runtime.getRuntime().exec("cmd /c start temp.bat"); This usually runs okay, but I've ...
0
votes
2answers
486 views

Using fseek with a file pointer that points to stdin

Depending on command-line arguments, I'm setting a file pointer to point either towards a specified file or stdin (for the purpose of piping). I then pass this pointer around to a number of different ...
0
votes
1answer
93 views

piping commands into buffer on windows

I have the following code for linux: char pi[512]; FILE *fp1; char pingStr[250]; sprintf(pingStr, "ping %s", info->server); fp1 = popen(pingStr,"r"); fgets(pi,512,fp1); ...
0
votes
2answers
346 views

Using MySQL in Powershell, how do I pipe the results of my script into a csv file?

In PowerShell, how do I execute my mysql script so that the results are piped into a csv file? The results of this script is just a small set of columns that I would like copied into a csv file. I ...
0
votes
1answer
249 views

piping standard output into QLabel in Qt 4.7

I am trying to wrap a colleges c++ code in a Qt widget. However, his programs std output necessarily needs to be viewed. As of now I am assuming I will build a GUI and open a QProccess that will run ...
0
votes
1answer
99 views

How can I pipe command output to a pause command, which defers execution for a given length of time?

Is it possible to do something like this in unix? monit restart | pause 120 | monit status I just happen to be monitoring monit which restarts and then i find myself repeatedly outputting the ...
0
votes
2answers
231 views

Piping output of C program to file (bash)

I'm just trying my hand in bash, so I wrote a simple program in C to count the number of characters in a file. This is my C program: #include <stdio.h> int main() { int i, nc; nc = 0; i ...
0
votes
1answer
467 views

Java: Using the Scanner class to read input from a file without pipeing

I currently have an implementation of a program where I read in the input using the Scanner class. Integer by integer. I do this by piping the input file via the command line. java program < ...
0
votes
1answer
229 views

PHP Mail Piping

I don't know much about this and was just curious because i had an idea :) I know with my cPanel hosting i can pipe an email inbox to a script, but what i want to do is: send to hi@hi.com pipes to ...
0
votes
3answers
68 views

writing data from a program to a file

I'm using linux. Let's say I have a program named add. The program takes two numbers. so if I type in add 1 2 the answer is 3 //obvious what command will make this write out to a file named ...