alternative to the grep trick


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers alternative to the grep trick
# 1  
Old 12-27-2011
alternative to the grep trick

Hi,

We used to use the below commands often.
Code:
ps -ef|grep [a]bc
ps -ef|grep abc|grep -v grep

Both fairly returns the same result.
For example, the process name is dynamic and we are having the process name in a variable, how we can apply the above trick.

For example "a" is the variable which contains the process name abc, then
Code:
ps -ef|grep $a|grep -v grep

This will work.
But how we can implement the other trick ,using [] in this case.
Any suggestions welcome.

Thanks.
# 2  
Old 12-27-2011
One way to do this:

Code:
a="abc"
a=`echo $a | sed "s/^\(.\)/[\1]/"`
ps -ef | grep $a

This User Gave Thanks to balajesuri For This Post:
# 3  
Old 12-27-2011
Thanks!It's awesome!
Code:
$ export a=sched
$  ps -ef|grep `echo $a | sed "s/^\(.\)/[\1]/"`
    root     0     0  0   Oct 23 ?        0:26 sched

# 4  
Old 12-27-2011
But, is this really necessary? Wouldn't it rather be easier to just type ps -ef | grep $a | grep -v grep?
# 5  
Old 12-27-2011
Quote:
Originally Posted by balajesuri
But, is this really necessary? Wouldn't it rather be easier to just type ps -ef | grep $a | grep -v grep?
Yes.But just for a learning.
Nothing wrong in learning i feel.

Thanks
# 6  
Old 12-27-2011
Definitely not :-) Cheers
# 7  
Old 12-27-2011
As you say, learning is great, so why don't you just look at the ps man page? You're wasting your time with grep.

Code:
ps -fC sched

This User Gave Thanks to ryran For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with grep, or alternative

say I have a big list of something like: sdg2000 weghre10 fewg53 gwg99 jwegwejjwej43 afg10293 I want to remove the numbers of any line that has letters + 1 to 4 numbers output: sdg weghre fewg gwg jwegwejjwej afg10293 (7 Replies)
Discussion started by: Siwon
7 Replies

2. Shell Programming and Scripting

Alternative command to grep -w option

Hi All, We have few scripts where we are using grep -w option to do exact matching of the pattern. This works fine on most of our servers. But I have encounter a very old HP-UX System(HP-UX B.11.00) where grep -w option is not available. This is causing my scripts to fail. I need to change... (7 Replies)
Discussion started by: veeresh_15
7 Replies

3. Programming

Oracle TRICk Question

HI Guys , Below are the two columns ITEMS and STATE of table . ITEMS STATE '2345','ggdh','k5tg','dgyt','hFF' DF '1234','ghyt','DDD','GHTD','ABF' PQ Can we get output in PL/SQL in below way ?... (7 Replies)
Discussion started by: Perlbaby
7 Replies

4. Shell Programming and Scripting

Please suggest alternative to grep

Hi Experts, PFB my requirement: I have a file (named file1) containing numbers like: 372846078543002 372846078543003 372846078543004 372846078543005 372846078543006 I have another file (nemed file2)where lines containing these numbers(present in file1) are present; Eg: lppza087; <PERFB >... (6 Replies)
Discussion started by: niladri29
6 Replies

5. Shell Programming and Scripting

Any trick to speed up script?

Hi Guys, I have a script that I am using to convert some text files to xls files. I create multiple temp. files in the process of conversion. Other than reducing the temp. files, are there any general tricks to help speed up the script? I am running it in the bash shell. Thanks. (6 Replies)
Discussion started by: npatwardhan
6 Replies

6. Shell Programming and Scripting

Need best grep option or alternative

Hello, I am processing a text file which contains only words with few combination of characters (it is a dictionary file). example: havana have haven haven't havilland havoc Is there a way to exclude only 1 to 8 character long words which not include space or special characters : '-`~.. so... (5 Replies)
Discussion started by: alekkz
5 Replies

7. Shell Programming and Scripting

Alternative to grep

How to find a particular line in a file without using grep? (3 Replies)
Discussion started by: proactiveaditya
3 Replies

8. UNIX for Dummies Questions & Answers

Grep alternative to handle large numbers of files

I am looking for a file with 'MCR0000000716214' in it. I tried the following command: grep MCR0000000716214 * The problem is that the folder I am searching in has over 87000 files and I am getting the following: bash: /bin/grep: Arg list too long Is there any command I can use that can... (6 Replies)
Discussion started by: runnerpaul
6 Replies

9. Shell Programming and Scripting

Stupid find trick

At work, we use a software development product (from a company that will remain nameless, but whose name may be considered a synonym for "logical"). The development trees are organized beneath a top directory, let's call it "$rat". The first level under $rat contains the major system names, and... (2 Replies)
Discussion started by: criglerj
2 Replies
Login or Register to Ask a Question