Sponsored Content
Top Forums UNIX for Dummies Questions & Answers [Solved] How to remove listing of current user cmd from ps -ef listing? Post 302766917 by KDMishra on Tuesday 5th of February 2013 11:47:49 PM
Old 02-06-2013
[Solved] How to remove listing of current user cmd from ps -ef listing?

Hi All,


Could you please help to resolve my following issues:

Problem Description:

Suppose my user name is "MI90".
i.e. $USER = MI90

when i run below command, i get all the processes running on the system containing name MQ.

ps -ef | grep MQ

But sometimes it lists "grep MQ" cmd also in its output, which is nothing but the above cmd which i executed to check all the running processes of system.
& sometimes not.

NEED:

My need is that it should always avoid listing "grep MQ", which has been started just now by the current user i.e. MI90

Examples:

when i run $ ps -ef | gre MQ

i got :

MI90 36241614 36110452 0 05:41:31 pts/2 0:00 grep MQ
tibco 38535330 1 0 02:05:18 - 0:11 /appl/tibco/adapter/admqs/6 .2/bin/admqs --pid --run --propFile /appl/tibco/tra/domain/PR/application/MQAdap ter/MQAdapter-ABNAMROMQAdapter.tra --innerProcess
tibco 38797444 1 1 02:05:18 - 0:11 /appl/tibco/adapter/admqs/6 .2/bin/admqs --pid --run --propFile /appl/tibco/tra/domain/PR/application/MQAdap terNew/MQAdapterNew-ABNAMROMQAdapterNew.tra --innerProcess


but i always need only below:

tibco 38535330 1 0 02:05:18 - 0:11 /appl/tibco/adapter/admqs/6 .2/bin/admqs --pid --run --propFile /appl/tibco/tra/domain/PR/application/MQAdap ter/MQAdapter-ABNAMROMQAdapter.tra --innerProcess
tibco 38797444 1 1 02:05:18 - 0:11 /appl/tibco/adapter/admqs/6 .2/bin/admqs --pid --run --propFile /appl/tibco/tra/domain/PR/application/MQAdap terNew/MQAdapterNew-ABNAMROMQAdapterNew.tra --innerProcess


So please help me in getting such o/p....

Thanks in advance!
Regards,
KD
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Recursive directory listing without listing files

Does any one know how to get a recursive directory listing in long format (showing owner, group, permission etc) without listing the files contained in the directories. The following command also shows the files but I only want to see the directories. ls -lrtR * (4 Replies)
Discussion started by: psingh
4 Replies

2. UNIX for Dummies Questions & Answers

Find files older than 5 days and remove tem after listing

need help with this ... Find files older than 5 days and remove tem after listing list "test" file older than 5 days and then remove them (1 Reply)
Discussion started by: ypatel6871
1 Replies

3. Shell Programming and Scripting

listing files that do not belong to current date

How do we list all the file names in a directory that does not belong to current date. (1 Reply)
Discussion started by: esh.mohan
1 Replies

4. UNIX for Dummies Questions & Answers

listing files that does not belong to current date

How do we list all the file names in a directory that does not belong to current date. (3 Replies)
Discussion started by: esh.mohan
3 Replies

5. UNIX for Dummies Questions & Answers

Listing only directories in the current working directory using the "ls" command

Hello All, I am trying to list only directories in my current directory using the command "ls -d". But the output only contains the default directory "." and doesn't list the rest of the directories in the working directory. Can anyone explain why this is happening (2 Replies)
Discussion started by: igandu
2 Replies

6. UNIX for Dummies Questions & Answers

listing home dir of anothe user

Hi I am trying to display the home directory of another user. I dont have the permissions to change into their directory and wonder is it possible to display their directory eg I cant change directory to john but I am trying to display something like /home/John. If anyone can help I would... (3 Replies)
Discussion started by: mmg2711
3 Replies

7. UNIX for Dummies Questions & Answers

[Solved] Problem with listing my files

Hello, In my directory i have got a list of files like below unix1a.csv unix1b.csv unix1c.csv unix1d.csv unix1y.csv I have done ls -lrt unix1.csv, how can i get my unix1y.csv also get listed along with this.. (5 Replies)
Discussion started by: sathyaonnuix
5 Replies

8. UNIX for Dummies Questions & Answers

Listing based on User and Date

listing based on user. I have files in some folder that come from many user -rwxrwxr-x 1 ratih pbank 4827112 Jun 8 08:37 S92TA-8.sgy -rwxrwxr-x 1 ratih pbank 4724568 Jun 8 08:37 S92TA-6.sgy -rwxrwxr-x 1 ratih pbank 4929656 Jun 8 08:37 S92TA-19.sgy -rwxrwxr-x 1 ratih ... (4 Replies)
Discussion started by: muhnandap
4 Replies

9. UNIX for Dummies Questions & Answers

[Solved] Listing files starting with p or f and with the exact length of 3 characters

Hello, I need some help. How can I list files starting with p or f and with the exact length of 3 characters? (2 Replies)
Discussion started by: airbebe
2 Replies

10. Shell Programming and Scripting

Listing multiple files in windows cmd

i have multiple files like how to do list files from new_30 to new_50 i have tried this command but it wont work dir new*{30-50}.txt my exact requirement is to get line count of these files the command which work is FOR %i IN (new*.txt) DO find %i /c /v "" but at the... (1 Reply)
Discussion started by: sagar_1986
1 Replies
uil(user cmd)															     uil(user cmd)

NAME
uil -- The user interface language compiler SYNOPSIS
uil [options ] [file] DESCRIPTION
The uil command invokes the UIL compiler. The User Interface Language (UIL) is a specification language for describing the initial state of a user interface for a Motif application. The specification describes the objects (menus, dialog boxes, labels, push buttons, and so on) used in the interface and specifies the routines to be called when the interface changes state as a result of user interaction. file Specifies the file to be compiled through the UIL compiler. options Specifies one or more of the following options: -Ipathname This option causes the compiler to look for include files in the directory specified if the include files have not been found in the paths that already were searched. Specify this option followed by a pathname, with no intervening spaces. -m Machine code is listed. This directs the compiler to place in the listing file a description of the records that it added to the User Interface Database (UID). This helps you isolate errors. The default is no machine code. -o file Directs the compiler to produce a UID. By default, UIL creates a UID with the name a.uid. The file specifies the filename for the UID. No UID is produced if the compiler issues any diagnostics categorized as error or severe. UIDs are portable only across same-size machine architectures. -s Directs the compiler to set the locale before compiling any files. The locale is set in an implementation-dependent manner. On ANSI C-based systems, the locale is usually set by calling setlocale(LC_ALL, ""). If this option is not specified, the compiler does not set the locale. -v file Directs the compiler to generate a listing. The file specifies the filename for the listing. If the -v option is not present, no listing is generated by the compiler. The default is no listing. -w Specifies that the compiler suppress all warning and informational messages. If this option is not present, all mes- sages are generated, regardless of the severity. -wmd file Specifies a binary widget meta-language description file to be used in place of the default WML description. RELATED INFORMATION
X(1) and Uil(3). uil(user cmd)
All times are GMT -4. The time now is 03:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy