Tagged Questions
0
votes
1answer
21 views
GNU Make: sed doesn't work when piped inside of $(shell)
Here is my experimental Makefile.
.SECONDEXPANSION:
~/hello.txt: $(shell echo '$$(@D)/')$(shell echo '$$(@F)' | sed -e 's/hello/bye/')
echo "$^"
Somehow the sed command doesn't work, and Make ...
0
votes
2answers
76 views
Can not understand the pipe() in my own shell
This is the code i found for my own shell. It works fine, but the thing i can't understand is pipe section of the code.
#include <stdio.h>
#include <unistd.h>
#include <string.h>
...
0
votes
1answer
21 views
Can I pipe files from find to less?
I have a bunch of files, and need to examine all which are non-empty. I can find these files e.g. by running
find *e* -maxdepth 1 -size +0 -print
But if I add | less to the above, I only get to see ...
0
votes
1answer
30 views
Gnu find: apply -prune to directories which match a pattern in external file
I wonder if there is a more efficient way to obtain directory patterns for use with -prune from an external file:
find . \( -type d -a -exec sh -c "echo \"{}\" | grep -qEx -f patterns.prune" \; \) ...
0
votes
2answers
53 views
Implement a pipe in C
I try to implement a pipe in C but I have a little problem:
Here is my function :
void commandeTube(char * c1, char * c2) {
int c1toc2[2];
int c2toPere[2];
pid_t pidc1, pidc2;
...
2
votes
2answers
36 views
How to identify what is printing on screen in linux?
I'm using a library in my C++ application and trying to capture all the output in a file. I tried to redirect the stderr to stdout and then stdout to a file like so:
./a.out 2>&1 > out.txt
...
1
vote
1answer
29 views
How to assign an output to a shellscript variable?
How to assign this result to a shell variable?
Input:
echo '1+1' | bc -l
Output:
2
Attempts:
(didn't work)
#!bin/sh
a=echo '1+1' | bc -l
echo $a
0
votes
0answers
29 views
Including ability of execution of pipes to my own shell
I am given an assignment to create my own shell based on Linux shell. I downloaded a code and i can understand how it is implemented. But the problem is it does not include the way of executing ...
0
votes
3answers
80 views
From Perl, spawn a shell, configure it, and fork the STDOUT
I use a Perl script to configure and spawn a compiled program, that needs a subshell configured a certain way, so I use $returncode = system("ulimit -s unlimited; sg ourgroup 'MyExecutable.exe'");
I ...
1
vote
3answers
46 views
What happens when stderr redirected after stdout?
What happens when stderr is redirected after stdout and vice versa?
For example:
someCommand > log.txt 2>&1
vs.
someCommand 2>&1 > log.txt
-1
votes
2answers
55 views
Trouble with UNIX pipes
So I have some ruby code that loops putting strings to stdout using puts then sleeps using sleep. I then have some node.js code that listens on stdin for data events and simply logs what it gets from ...
4
votes
1answer
123 views
what is the proper way to pipe when making a shell in C
I’m attempting to create my own shell I believe i have the forking done correctly but i cannot figure out how to pipe correctly. Any help or tips would be appreciated.
basically my pipes aren’t ...
1
vote
3answers
78 views
How does “less” command get stdin input?
I'm just wondering about this problem:
if I can use something like "ls -al | less", less should have the ability of waiting for input from stdin. What I expected to happen is after running "less" ...
0
votes
3answers
80 views
How do i append some text to pipe without temporary file
I am trying to get the max version number from a directory where i have several versions of one program
for example if output of ls is
something01_1.sh
something02_0.1.2.sh
something02_0.1.sh
...
1
vote
4answers
89 views
Sub-processing pipe write to file malfunction
Executing this in shell gets me tangible results:
wget -O c1 --no-cache "http://some.website" | sed "1,259d" c1 | sed "4,2002d"
Doing this in Python gets me nothing:
...
1
vote
2answers
67 views
How to not output anything when the first command of a pipe does not output
I have 2 commands which I want to pipe like so: command1 | command2. When command1 does not output anything at all command2 still outputs. How do I stop
command1 | command2 from outputting when ...
0
votes
1answer
79 views
shellscript, download tg and pipeline stdout to tar, get http header in stderr?
The shellscript I am trying to write is to
download a tarball and stdout to tar to uncompress it
at the same time parse the http headers found at stderr
set the parsed result at #2 to a variable.
...
3
votes
1answer
48 views
Is there a way to catch a failure in piped commands?
Here's an example of what I'm trying to achieve:
#!/bin/bash
set -e # abort if error
...
command1 2>&1 | command2
...
And I notice that sometimes command1 fails but command2 does not and ...
0
votes
1answer
73 views
Issue terminal commands that are piped to a shell script
I have what seems to be a simple use case: I launch a script (python or bash) which runs an emulator from command prompt and then the emulator takes commands until I type ctrl-c or exit. I want to do ...
3
votes
3answers
82 views
Duplicate stdout, pipe it to two different commands, collect results from both to stdin of final program
Say I have three programs: generator, that produces input data fed to processor and verifier that can check if processor output is correct for given input (so it needs both files).
What I currently ...
2
votes
1answer
99 views
Creating a Log Detector: Running Shell Scripts from PHP not working. Processes keep running OR broken pipe
My aim is to create a log file reader using PHP and Shell scripting.
I plan to run the script at intervals in order to detect the last time a particular entry shows up in the logfile.
The way it ...
2
votes
1answer
61 views
pipe not interpreted in read command from file
I am trying to write a shell script for server health check.
Commands to be used are in a separate file, passed as a Command line argument to the script.
This file is read line by line.
My script is :
...
1
vote
1answer
169 views
correct way to write to pipe line by line in Python
How can I write to stdout from Python and feed it simultaneously (via a Unix pipe) to another program? For example if you have
# write file line by line
with open("myfile") as f:
for line in f:
...
1
vote
1answer
62 views
How can I execute command line output in windows without having to generate a bat file?
I did a little script to pull the latest of all my subrepos in Mercurial (without updating them) for a very particular experiment (integrating with another VCS whose repo I had to break in different ...
1
vote
1answer
57 views
How to flush all pipes currently running?
I have some piped processes going on in the background that have been running for over a day now.
$ cmd | cmd | cmd | cmd | cmd > file
Is it possible to flush all the pipes so I can see the ...
-3
votes
1answer
159 views
“Command not found” error with UNIX shell
I've been working on a C program which simulates a shell via the terminal. I'm stuck on the pipe where I use a temporary file.
My problem is that during the execution of a command like ls | wc it ...
-3
votes
1answer
69 views
Unix Shell in C Pipe prob [closed]
I am currently working on a unix shell c. My problem is the pipe, I have traveled many forums and I can not solve it.
I go through a temporary file.
Thank you in advance.
Code here : ...
1
vote
1answer
74 views
Open a shell in the second process of a pipe
I'm having problems understanding what's going on in the following situation. I'm not familiar with UNIX pipes and UNIX at all but have read documentation and still can't understand this behaviour.
...
1
vote
1answer
376 views
C Minishell Adding Pipelines
So I'm making a UNIX minishell, and am trying to add pipelines, so I can do things like this:
ps aux | grep dh | grep -v grep | cut -c1-5
However I'm having trouble wrapping my head around the ...
-1
votes
1answer
240 views
piping in shell implementation in C
I am implementing a shell in C. This is the function i use for piping. When i put "ls | a" in the code (i.e. pipe a valid command with invalid one),It doesnt exit the child process like it should. ...
2
votes
1answer
32 views
when there is pipe, how to deal with permission with sudo
if the command is with a pipe, how to deal with permission problem with sudo
the following command
sudo -u liy echo "update moz_cookies set value='f1=40000000&f3=40000&fv=11.2.202' where ...
1
vote
2answers
47 views
How to execute a script on server from client side?
I have a shell script placed at the root of a linux machine which acts as a server.I want to execute that script from client side
could popen be used to achieve this or any other alternative ...
2
votes
3answers
575 views
Pipe multiple commands to a single command with no EOF signal wait
How can I pipe the std-out of multiple commands to a single command? Something like:
(cat my_program/logs/log.*;tail -0f my_program/logs/log.0) | grep "filtered lines"
I want to run all the ...
1
vote
1answer
354 views
How to implement 'set -o pipefail' in a POSIX way - almost done, expert help needed
I have to implement the BASH "set -o pipefail" option in a POSIX way so that it works on various LINUX/UNIX flavors. To explain a bit, this option enables the user to verify the successful execution ...
0
votes
3answers
252 views
Progress bar in a linux terminal
I recently implemented a progress bar class in C++. I wrote something like
cout << "\r" << percentage_done << "%" << flush;
Now I am running some programs piping the output ...
0
votes
1answer
87 views
Shell programming, pipe outputfil
a newbie to shell programming here.
I have this codes so far:
prog inputfile outputfile1
sort -rn outputfile1 | cut -f1-2 > outputfile2
My question is there a way to pipe the outputfile ...
1
vote
2answers
97 views
Confusion of pipe syntax in AWK
The example code is like this, it does the statistic of number of times the first column appears and sort the result.
{ dist[$1]+=1; }
END { for (i in dist) {
print i,dist[i] | "sort"
...
3
votes
1answer
1k views
Multiple pipe implementation using system call fork() execvp() wait() pipe() - it is simply not working
I need to implement my shell that handles multiple pipe commands. For example I need to be able to handle this: ls | grep -i cs340 | sort | uniq | cut -c 5. I am assuming the problem is that I am not ...
0
votes
0answers
197 views
Implelementing multiple piping in my own shell - seems like I am missing something
I need to write a shell that handles this ls -la | sort | wc -c, or any amount of pipes that I want to. When I run my program, it takes input and after I press Enter, it just prints out bunch of ...
4
votes
1answer
770 views
*Almost* Perfect C Shell Piping
I am writing a small linux shell in C and am so very close to being done. I take in a command from the user and store it in args, delimited by spaces. In the following example, let's say that args ...
1
vote
1answer
62 views
Pipe not executing + signal handling
I am trying to implement a simple two stage pipe in a shell.
When I don't do the second fork and just do the rest of the implementation of the pipe in the parent, it works fine but I exit the shell. ...
1
vote
1answer
267 views
FFmpeg works out mp3 duration with file input, but fails with pipe?
I am trying to get PCM data from mp3's using ffmpeg, but the files are stored on a database, gridfs, so I am trying to use pipes to give ffmpeg the data with some sucess, however there is one file ...
3
votes
1answer
702 views
Pipe multiple commands to a single command
How can I pipe the stdout of multiple commands to a single command?
e.g., I want to run all the following commands on a single command-line using pipes and no redirects to a temp file:
setopt > ...
1
vote
1answer
297 views
shell script, subshell, sub script, pipe - WEIRD (?) CTRL+C SIGNAL PROPAGATION
So, I've identified a behaviour of my bash script that I find weird.
Here is a test script:
echo "start of script"
(
echo "start of subshell"
cat > /tmp/$$ << EOF
trap 'exit 99' SIGINT
...
3
votes
3answers
298 views
Why does 2>&1 need to come before a | (pipe) but after a “> myfile” (redirect to file)?
When combining stderr with stdout, why does 2>&1 need to come before a | (pipe) but after a > myfile (redirect to file)?
To redirect stderr to stdout for file output:
echo > myfile ...
-2
votes
3answers
50 views
how to produce the output for the next pipe in php in a bash shell?
I am writing a shell to process the web log. One operation is written in php and called in the bash shell, it accept a stdin from the previous pipe and produce the output to the next pipe. I am ...
0
votes
0answers
67 views
Pipe Excel range through external program?
In Excel, how can I send a selected range of cells to an external program (e.g., perl) and replace those cells with the program output? I'm looking for the Excel VBA (I think) equivalent of the Emacs ...
5
votes
1answer
198 views
Redis: who is eating my field when piping llen results through awk?
Redis: 2.0.4, 2.4.1, ...
I'm going to write a Nagios plugin to check the length of a list. Here's my script:
#!/bin/sh
help()
{
echo "Usage: $0 <host> <port> <key> -w ...
0
votes
2answers
71 views
how to pipe parsed command into shell interpretor?
I have a 'fancy_awk_script' which parse file names into shell command
myself@supercomputer /home/myself $ ls -1 *.MYLOG.csv | fancy_awk_script
cp 20120607.MYLOG.csv 20120607.MYLOG.csv2
mv ...
1
vote
2answers
703 views
How to use pipe to parse output of a command
I want to process the output of a process, say ifconfig. As you all know output of ifconfig is a list of lines containing inet addr: mask: etc. But I want to extract the ip alone[from inet addr: ...

