Tagged Questions

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 ...
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 ...
1
vote
2answers
208 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 ...
0
votes
2answers
51 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
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 ...