The piping tag has no wiki summary.
0
votes
1answer
31 views
pipe Unix commands together in Java
I have a requirement to run the below command from Java
echo <inputMessage> | iconv -f utf8 -t Cp930
When i use the below code to run the command i see only the echo part is executed but the ...
1
vote
1answer
24 views
Piping both stdout and stderr in bash?
It seems that newer versions of bash have the &> operator, which (if I understand correctly), redirects both stdout and stderr to a file (&>> appends to the file instead, as Adrian ...
0
votes
3answers
36 views
Piping for a computer understanding
I understand that in piping a < b > c means to use the data of file b for input to program a instead of stdin, and write the output of program b to the file c instead of stdout.
What I dont ...
0
votes
1answer
63 views
Proper disposal of powershell pipeline objects
This script snippet is accessing a SharePoint site (web) within a function. It creates a SPWeb object that should get disposed of by the end of the function to avoid a memory leak. Usually the way to ...
0
votes
3answers
46 views
Piping Perl Commands?
I'm currently trying to take my program and have it take user input, usually a text file then call an external script to count the words. The script I'm working on is essentially a "middle man" and ...
1
vote
0answers
59 views
PHP Qmail piping to script not working due to permissions?
I have Qmail set up to pipe to a script for a particular email address, which is working; However, part of the script creates a file which is not working.
The group on the folder it is attempting to ...
0
votes
0answers
67 views
PHP class to parse and send emails
I have Exim4 that pipes incoming emails to my PHP script.
This PHP script should parse it, modify some headers and probably add some info like:
This email was sent by example.com service.
(both ...
0
votes
3answers
79 views
Making use of piped data in python
I'm working on a python 3 project that does the exact same thing as bash's 'wc' (Word count) command. The format for input looks like this:
$ python3 myWC.py < fileName.txt
I'd like to use the ...
1
vote
2answers
207 views
Debian bash script works fine from command line; fails in crontab
I'm trying to use the DreamHost API (see here) to update a DNS entry using crontab. I have written the following bash script:
#!/bin/bash
dh_api_key=<my api key>
dh_domain=<my fq ...
0
votes
1answer
77 views
Email piping not working for PHP script. Local delivery failed error
In cPanel I have piped the following to my script:
alerts@XXX.com to |/home/XXX/public_html/client/inc/msg/mailReader.php
I get the following email returned:
This message was created ...
0
votes
1answer
69 views
Piping not working within bash script when run from a GUI as opposed to bash shell
As part of my build process I'm trying to mount a DMG using hdiutil.
I've written a shell script to do this, and because hdiutil asks for confirmation of the license agreement before opening, I have ...
1
vote
1answer
368 views
Unix pipe - reading data from stdin in the child descriptor
I'm trying to implement unix piping in c (i.e. execute ls | wc). I have found a related solution to my problem (C Unix Pipes Example) however, I am not sure why a specific portion of the solved code ...
2
votes
2answers
59 views
What's the most hassle-free way to pipe stuff through a short-running process and get output?
I want to run lessc on some stuff I've read/processed through lessc, and don't want to mess around with files. subprocess.check_output and Popen.communicate have both proven to be a great deal of ...
0
votes
1answer
26 views
Piping reference for “INSTALL=y sh”
I came around this
With the following command for shell:
curl https://raw.github.com/visionmedia/git-extras/master/bin/git-extras | INSTALL=y sh
Which results in:
mkdir: cannot create directory ...
1
vote
1answer
250 views
What does :?> mean in f#?
Given the line:
let win = XamlReader.Parse(xaml) :?> Window
What is :?> doing?
I tried looking up ternary but not noticing the :?, it seems to be for type testing?. Also I know > is ...
4
votes
3answers
156 views
Bash: Why piping input to “read” only works when fed into “while read …” construct?
I've been trying to read input into environment variables from program output like this:
echo first second | read A B ; echo $A-$B
And the result is:
-
Both A and B are always empty. I read ...
0
votes
1answer
72 views
PHP, return a set number of characters after finding the string in a string(variable)
I am trying to fetch details from an email pipe. the pipe returns the $message variable to me which contains allot of data. I want to be able to search the string for a specific value and return the ...
0
votes
1answer
91 views
PHP email Piping get 'to' field
I am trying to use email piping with PHP.
I have it working except I can't get the 'To' field.
I am using the following PHP code:
#!/usr/bin/php -q
<?php
// read from stdin
$fd = ...
3
votes
2answers
205 views
Pipe output of python script
I'm running ./sample.py --url http://blah.com without error, though if I run ./sample.py --url http://blah.com | wc -l or similar I receive an error:
UnicodeEncodeError: 'ascii' codec can't encode ...
0
votes
0answers
52 views
Trouble redirecting a file of input strings to program through stdin
The program I'm running asks for input strings during runtime in the following format:
"Enter some data 1:"
>> "My input string"
"Enter some data 2:"
>> "My input string2"
I've tried ...
3
votes
1answer
126 views
Error using pipes and exec.Second command does not exit
The code takes a command as input and executes it. Pipes are also handled.
The issue is that suppose if i enter ls | grep x as command. The process grep does not exit and so the program halts. Any ...
2
votes
1answer
95 views
Piping to unistd.h read segfault
im trying to pipe into read but it keeps segfaulting after the second input. what am i doing wrong? Thanks in advance.
$ ./read < <(python -c 'print "BBA\nBBADD\n",')
Please enter your first ...
3
votes
2answers
183 views
Is #tap method in Ruby dangerous?
How does tap method work concurrencywise? Do I have to fear that if I do:
some_object.tap { |o|
# time-consuming operation 1
}.tap { |o|
# time-consuming operation 2
}
that, in the present or ...
1
vote
0answers
328 views
Bulk email send 50 per minute [closed]
My client has a huge email list and he gets about 50 emails per minute. I have a pipe that catches the emails within a 1 minute time span and stores the extracted (name,subject,message) in the ...
0
votes
0answers
115 views
How to pipe commands to a future process in C?
My program writes and executes this batch file (where xx:xx is the current time incremented by one minute):
at xx:xx /interactive "cmd.exe"
so a command prompt is spawned one minute in the future.
...
1
vote
0answers
108 views
Piping to a new Command Line in Java
I am writing a program that creates a this batch file:
at xx:xx /interactive "cmd.exe"
The program allows the user to select the time themselves, and on a computer running Windows XP, the command ...
0
votes
1answer
264 views
Multiple pipes in C, program waiting for input
I try to edit my post, since there were some issues with it.
I am still lost, trying to multipipe my program. When I run the program, goes into a state where it just takes some input - a like, ...
0
votes
1answer
487 views
Executing Multiple Pipes in a Loop
I am so close to figuring out a program I have been writing for linux shell written in C. I have been wanting to get this working for a while now, and I decided to pick it up again and have been ...
1
vote
1answer
159 views
passing paremeters from PHP Email piping
I have a PHP Script that received information from a piped email forwarder.
Currently everything works perfectly. I just want to manipulate the received parameters to receive only the data I want ...
1
vote
1answer
153 views
Piping Given an Array of UNIX Commands
So I am at the very end of a project to create a basic UNIX shell using C. I have finished a lot of different pieces of the program, but now I would like to conquer piping. I would specifically like ...
1
vote
2answers
97 views
Piping input to a shell command and keeping the created shell alive
My overarching program is a shell script. This shell script calls a C program that I need to pipe input to, and ultimately the C program will create a shell.
However, when I pipe my input into the C ...
0
votes
0answers
70 views
Email piping error. XCache conflicting with eAccelerator
I am using a shared hosting. While piping email to a script I am having the following error:
PHP Warning: Cannot load module 'XCache' because conflicting module 'eAccelerator' is already loaded in ...
0
votes
1answer
96 views
Special Piping/redirection in bash
(Firstly I've been looking for an hour so I'm pretty sure this isn't a repeat)
I need to write a script that executes 1 command, 1 time, and then does the following:
Saves both the stdout and ...
0
votes
1answer
47 views
Piping without transmitting EOT
I'm looking for a way to pipe without sending an EOT (Ctrl-D), i.e. making these equivalent:
bob@bob-pc:~$ cat
porkchop
porkchop
and
bob@bob-pc:~$ echo -n pork | cat
porkbob@bob-pc:~$ chop
No ...
1
vote
2answers
145 views
Piping error messages with grep
I have a script that fails because some files are missing.
Running the script and piping it to grep
$ ./adder | grep Error
produces the following output:
Error in <TFile::ReadBuffer>: ...
3
votes
3answers
389 views
Piping data from python to an external command
I've read everything there is on subprocess.Popen but I think I'm missing something.
I need to be able to execute a unix program which reads a data stream from a list created in the python script and ...
2
votes
3answers
611 views
Piping find results into grep for fast directory exclusion
I am successfully using find to create a list of all files in the current subdirectory, excluding those in the subdirectory "cache." Here's my first bit of code:
find . -wholename './cach*' -prune -o ...
5
votes
1answer
119 views
Linux piping & loop
Is it possible to create a loop using Linux pipes? E.g.
cmd1 | cmd2 | cmd3 | 'back to stdin cmd1'
In other words, I'd like stdout at cmd3 to be connected back to stdin of cmd1.
2
votes
2answers
251 views
How to timestamp application output with perl
I have a command line app that gives command line output as it runs. When I write it to a file (ex: app >> log.txt) it all shows up in the text file just like it appeared in terminal. I need to be ...
2
votes
3answers
2k views
putting a remote file into hadoop without copying it to local disk
I am writing a shell script to put data into hadoop as soon as they are generated. I can ssh to my master node, copy the files to a folder over there and then put them into hadoop. I am looking for a ...
0
votes
0answers
47 views
Email piping MediaTemple gs
Im trying to work out how to set up email piping on a MediaTemple GS account has anyone been able to set this up?
4
votes
2answers
143 views
Batch: Escaping with caret
I always hated batch and I still do, even for the most simple things I prefer C or PHP/Perl. But this time I could not go without it, *sight*.
I wanted to redirect an echo command to an other ...
3
votes
5answers
352 views
Linux commands - piping commands
I tried the following command find ~/dir1 *.m4a | play
Directory dir1 has exactly 1 m4a file in it and I'd like it to be played
Yet I get a usage error from play. Why?
2
votes
3answers
325 views
printf, ignoring excess arguments?
I noticed today Bash printf has a -v option
-v var assign the output to shell variable VAR rather than
display it on the standard output
If I invoke like this it works
$ printf -v var ...
1
vote
2answers
428 views
java pipe/process builder not working with cmd.exe
here's my code it just opens a command prompt windows 7 and then sits. nothing else. i want it to send and receive commands obviously. so whats wrong??
String line;
try {
Process p = ...
1
vote
2answers
743 views
Set $_SERVER variable when calling PHP from command line?
Is it possible to pass a $_SERVER variable to a PHP script via the command line?
Specifically I am trying to set the $_SERVER['recipient'] manually so I can test email piping without setting up a ...
1
vote
2answers
61 views
Why is `help format-list` not the same as `format-list | help`?
help format-list outputs the help for format-list.
format-list | help outputs the help for help (get-help).
0
votes
2answers
196 views
How can I make a C++ program read arguments passed into it with Python subprocess.call()?
Basically I am making a Python program and part of it needs to run a C++ executable, I am calling the exe with:
...
1
vote
1answer
386 views
Why is piping output of subprocess so unreliable with Python?
(Windows)
I wrote some Python code that calls the program SoX (subprocess module), which outputs the progress on STDERR, if you specify it to do so. I want to get the percentage status from the ...
2
votes
3answers
189 views
Shell script can not pass file data to shell input
cal April 2012 | cat > t | cat < t | more
Why does it showing nothing? Why isn't it showing
April 2012
Su Mo Tu We Th Fr Sa
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 ...
