Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
07-07-2012, 08:22 AM
|
#1
|
|
LQ Newbie
Registered: Mar 2012
Posts: 15
Rep: 
|
Filtering the output of a process
Hi,
I'd like to write a bash script what launches a program with a lot of output (this program doesn't stop unless you kill it, but it runs like a daemon). So I need to filter its output in runtime and kill it if this output contains a specific string. Unfortunatelly
./dameon_program | grep -Ei "string"
doesn't a good solution because it cannot capture this string.
Any idea how can I solve this?
|
|
|
|
07-07-2012, 08:59 AM
|
#2
|
|
LQ Newbie
Registered: Mar 2012
Posts: 15
Original Poster
Rep: 
|
Okay, the fist part is solved:
./daemon_program 2>&1 | grep -Eio "LOADFAIL"
This command captures the proper string but how can I kill the program if I detect this?
I tried the following:
if [ `./daemon_profram 2>&1 | grep -Eio "LOADFAIL"` != "" ]; then
kill `pidof deamon_program`
fi
But it doesn't work. Ideas?
|
|
|
|
07-07-2012, 10:02 AM
|
#3
|
|
Senior Member
Registered: Mar 2012
Location: Hungary
Distribution: debian i686 (solaris)
Posts: 2,796
|
grep will wait until your daemon_program ends, so you need to tell grep to stop at the first match.
you do not need -E and -o to grep, but you would need -L. Try:
./daemon_program 2>&1 | grep -Li "LOADFAIL" && pkill daemon_program
|
|
|
|
07-10-2012, 03:50 AM
|
#4
|
|
Senior Member
Registered: Mar 2004
Location: england
Distribution: FreeBSD, Debian, Mint, Puppy
Posts: 3,211
Rep: 
|
You probably need to rethink the problem.
something like this could do:
Code:
SEARCH=profile
find $HOME | while read x;do
echo $x
[ "${x#*$SEARCH*}" ] || break # do kill here
done
# or do kill here
obviously replace the find with your daemon
|
|
|
|
07-10-2012, 09:39 AM
|
#5
|
|
LQ 5k Club
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,265
|
bigearsbilly has posted a superior solution, which allows the pipeline to accumulate very little data by breaking the output of the child process into individual lines. I think the other solutions will accumulate the child process output in a buffer until an EOF is received (the child terminates), and then the grep will receive the full complement of buffered data.
--- rod.
|
|
|
|
07-10-2012, 12:20 PM
|
#6
|
|
Senior Member
Registered: Mar 2012
Location: Hungary
Distribution: debian i686 (solaris)
Posts: 2,796
|
Quote:
Originally Posted by theNbomr
bigearsbilly I think the other solutions will accumulate the child process output in a buffer until an EOF is received (the child terminates), and then the grep will receive the full complement of buffered data.
--- rod.
|
I made a "slow" cat:
Code:
while read a
do
echo $a
# this line for debug only
echo $a > /dev/tty
sleep 1
done < searchfile | grep -L 'pattern'
without -L it will run until the end of searchfile - regardless of the pattern, but with -L it will be stopped after the first match, grep does not wait "any longer". After the match even the while loop will be finished because the pipe has been broken. (Actually the while loop will print out a few additional debug line by then)
|
|
|
|
07-10-2012, 10:20 PM
|
#7
|
|
Guru
Registered: Sep 2009
Location: Perth
Distribution: Manjaro
Posts: 6,317
|
pan64 - is -L the correct solution? From the man page:
Quote:
-L, --files-without-match
Suppress normal output; instead print the name of each input file from which no output would normally have been printed. The scanning will stop on the first match.
|
I would suggest either -l (that is lower case 'el') or -m1 for first match
|
|
|
|
07-11-2012, 02:08 AM
|
#8
|
|
Senior Member
Registered: Mar 2012
Location: Hungary
Distribution: debian i686 (solaris)
Posts: 2,796
|
I think they will differ only how grep will exit (what will be the exit code). All of them will stop on the first match.
|
|
|
|
07-11-2012, 03:00 AM
|
#9
|
|
Senior Member
Registered: Mar 2004
Location: england
Distribution: FreeBSD, Debian, Mint, Puppy
Posts: 3,211
Rep: 
|
Quote:
Originally Posted by theNbomr
bigearsbilly has posted a superior solution,
|
I couldn't agree more 
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 05:33 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|