1
vote
2answers
33 views
Performance of sockets vs pipes
I have a Java-program which communicates with a C++ program using a socket on localhost. Can I expect to gain any performance (either latency, bandwidth, or both) by moving to use a native OS pipe? …
0
votes
0answers
23 views
CreateProcess with redirection access denied on the output pipe
Hello:
I have a simple code running in a DLL called from MFC application. Generally it implements the example that is shown in msdn article - …
1
vote
3answers
57 views
Python popen wont work with block devices
I am wring a small forensic app which looks like this so far
import time, os,sys
def getter():
filename = sys.argv[1]
print "File Entered: " + filename
os.system('file ' + filename)
…
1
vote
5answers
134 views
Pipe communication C++
I´m writing two litle c++ apps that must communicate. First one will be a service which, every once in a while, must alert the user for something. Since a service cannot create windows I designed the …
0
votes
1answer
27 views
python web app logging through pipe? (performance concerned)
I'm writing a web app using python with web.py, and I want to implement my own logging system. I'd like to log detailed information about each request that come to python (static files are handled by …
0
votes
0answers
49 views
Why doesn’t “find -print0” work in Cygwin under Vista? [closed]
I'm writing a simple shell script:
find datafiles/ -type f -print0 | xargs -0 md5sum > datafiles.md5
In Cygwin under Vista, it just sits there and nothing happens.
It works fine on Linux.
What …
3
votes
4answers
46 views
How can I pipe the output of a program that can only write to a file (and not to STDOUT)?
I'm trying to write something like Perl Audio Converter, so I need to be able to decode every relevant audio format to wav (PCM) and then encode wav to every relevant audio format. I'd like to do this …
1
vote
1answer
26 views
Using Windows named pipes from inside activeX control - Possible?
Hi All,
I am starting to design a DMO to run from inside a windows media player activeX control in Internet Explorer.
is there any reason why using windows named pipes from inside the DMO wouldn't …
0
votes
1answer
12 views
Howto pipe raw PCM-Data from /dev/ttyUSB0 to soundcard?
Hi
I'm working currently on a small microhpone, connected to PC via an FPGA. The FPGA spits a raw datastream via UART/USB into my computer. I'm able to record, play and analyze the data.
But I can't …
0
votes
1answer
56 views
Piping Cygwin into a Python program
Hello guys,
As a i'm new to the whole Piping thing and Python I had recently encountered a problem trying to pipe Cygwin's stdin & stdout into a python program usin Python's subprocess moudle.
…
0
votes
3answers
148 views
Linux Pipes as Input and Output
I would like to do the following inside a C program on a Linux os:
Create a PIPE using a syscall (or 2)
Execute a new process using exec()
Connect the process's STDIN to to the previously created …
0
votes
3answers
55 views
How to use Regex to Find & Replace html table tags?
I have blocks of code that look like this:
<table border="0"><tr><td><img …
14
votes
8answers
385 views
Why don’t I see pipe operators in most high-level languages?
In Unix shell programming the pipe operator is an extremely powerful tool. With a small set of core utilities, a systems language (like C) and a scripting language (like Python) you can construct …
5
votes
2answers
145 views
Problem with piping commands in C
Hi,
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 …
1
vote
1answer
26 views
is there a way to import/export a pipes source in text/xml format?
I'd like to save a copy of some of my pipes offline before I go to edit them, and possibly reload them from an external source again in future.
Can this be done?
