The OpenNET Project / Index page

[ новости /+++ | форум | теги | ]

форумы  помощь  поиск  регистрация  майллист  ВХОД  слежка  RSS
"Как получить кол-во процессов(демонов)"
Вариант для распечатки  
Пред. тема | След. тема 
Форумы Программирование под UNIX (Public)
Изначальное сообщение [Проследить за развитием треда]

"Как получить кол-во процессов(демонов)" 
Сообщение от vn31 Искать по авторуВ закладки(ok) on 27-Июн-05, 20:43  (MSK)
Хочу получить количество процессов.
Пишу вот так:

ps -ax |grep my_main_process |grep -v |grep -v sh
if [ $? != 0 ]; then
cd /usr/home/mitya/my_catalog
./my_programm
fi

выдает:
$ ./my_programm
Usage: grep [OPTION]... PATTERN [FILE]...
Try `grep --help' for more information.
0


читал ман, ничего не понял, перечиатал еще раз.

о системе:

FreeBSD kruto.com 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Wed Jun 15 23:51:02 MSK 2005     root@kruto.com:/usr/obj/usr/src/sys/MYKERNEL  i386

что я читал (не сочтите плз флудом):

$ grep --help
Usage: grep [OPTION]... PATTERN [FILE] ...
Search for PATTERN in each FILE or standard input.
Example: grep -i 'hello world' menu.h main.c

Regexp selection and interpretation:
  -E, --extended-regexp     PATTERN is an extended regular expression
  -F, --fixed-strings       PATTERN is a set of newline-separated strings
  -G, --basic-regexp        PATTERN is a basic regular expression
  -P, --perl-regexp         PATTERN is a Perl regular expression
  -e, --regexp=PATTERN      use PATTERN as a regular expression
  -f, --file=FILE           obtain PATTERN from FILE
  -i, --ignore-case         ignore case distinctions
  -w, --word-regexp         force PATTERN to match only whole words
  -x, --line-regexp         force PATTERN to match only whole lines
  -z, --null-data           a data line ends in 0 byte, not newline

Miscellaneous:
  -s, --no-messages         suppress error messages
  -v, --invert-match        select non-matching lines
  -V, --version             print version information and exit
      --help                display this help and exit
  -J, --bz2decompress       decompress bzip2'ed input before searching
  -Z, --decompress          decompress input before searching (HAVE_LIBZ=1)
      --mmap                use memory-mapped input if possible

Output control:
  -m, --max-count=NUM       stop after NUM matches
  -b, --byte-offset         print the byte offset with output lines
  -n, --line-number         print line number with output lines
      --line-buffered       flush output on every line
  -H, --with-filename       print the filename for each match
  -h, --no-filename         suppress the prefixing filename on output
      --label=LABEL         print LABEL as filename for standard input
  -o, --only-matching       show only the part of a line matching PATTERN
  -q, --quiet, --silent     suppress all normal output
      --binary-files=TYPE   assume that binary files are TYPE
                            TYPE is 'binary', 'text', or 'without-match'
  -a, --text                equivalent to --binary-files=text
  -I                        equivalent to --binary-files=without-match
  -d, --directories=ACTION  how to handle directories
                            ACTION is 'read', 'recurse', or 'skip'
  -D, --devices=ACTION      how to handle devices, FIFOs and sockets
                            ACTION is 'read' or 'skip'
  -R, -r, --recursive       equivalent to --directories=recurse
      --include=PATTERN     files that match PATTERN will be examined
      --exclude=PATTERN     files that match PATTERN will be skipped.
      --exclude-from=FILE   files that match PATTERN in FILE will be skipped.
  -L, --files-without-match only print FILE names containing no match
  -l, --files-with-matches  only print FILE names containing matches
  -c, --count               only print a count of matching lines per FILE
      --null                print 0 byte after FILE name

Context control:
  -B, --before-context=NUM  print NUM lines of leading context
  -A, --after-context=NUM   print NUM lines of trailing context
  -C, --context=NUM         print NUM lines of output context
  -NUM                      same as --context=NUM
      --color[=WHEN],
      --colour[=WHEN]       use markers to distinguish the matching string
                            WHEN may be `always', `never' or `auto'.
  -U, --binary              do not strip CR characters at EOL (MSDOS)
  -u, --unix-byte-offsets   report offsets as if CRs were not there (MSDOS)

`egrep' means `grep -E'.  `fgrep' means `grep -F'.
With no FILE, or when FILE is -, read standard input.  If less than
two FILEs given, assume -h.  Exit status is 0 if match, 1 if no match,
and 2 if trouble.

Report bugs to <bug-gnu-utils@gnu.org>.
$

  Правка | Высказать мнение | Ответить | Рекомендовать в FAQ | Cообщить модератору | Наверх

 Оглавление

Индекс форумов | Темы | Пред. тема | След. тема
Сообщения по теме

1. "Как получить кол-во процессов(демонов)" 
Сообщение от Doka Искать по авторуВ закладки(??) on 27-Июн-05, 21:02  (MSK)
>Хочу получить количество процессов.
>Пишу вот так:
>
>ps -ax |grep my_main_process |grep -v |grep -v sh
>if [ $? != 0 ]; then
>cd /usr/home/mitya/my_catalog
>./my_programm
>fi
>
>выдает:
>$ ./my_programm
>Usage: grep [OPTION]... PATTERN [FILE]...
>Try `grep --help' for more information.
>0
>
>
>читал ман, ничего не понял, перечиатал еще раз.
>
>о системе:
>
>FreeBSD kruto.com 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Wed Jun 15 23:51:02 MSK 2005
>    root@kruto.com:/usr/obj/usr/src/sys/MYKERNEL  i386
>
>что я читал (не сочтите плз флудом):
>
>$ grep --help
>Usage: grep [OPTION]... PATTERN [FILE] ...
ну и где PATTERN для 2-го grep
  Удалить Правка | Высказать мнение | Ответить | Рекомендовать в FAQ | Cообщить модератору | Наверх

2. "Как получить кол-во процессов(демонов)" 
Сообщение от knsi Искать по авторуВ закладки(ok) on 28-Июн-05, 08:55  (MSK)
>Хочу получить количество процессов.
>Пишу вот так:
ps aux | grep -v grep|grep -c "имя процесса"
- можно вот так
  Удалить Правка | Высказать мнение | Ответить | Рекомендовать в FAQ | Cообщить модератору | Наверх

3. "Как получить кол-во процессов(демонов)" 
Сообщение от Аноним emailИскать по авторуВ закладки on 28-Июн-05, 16:25  (MSK)
pgrep есть в наличии?
  Удалить Правка | Высказать мнение | Ответить | Рекомендовать в FAQ | Cообщить модератору | Наверх

4. "Как получить кол-во процессов(демонов)" 
Сообщение от chip emailИскать по авторуВ закладки(ok) on 29-Июн-05, 16:24  (MSK)
>Хочу получить количество процессов.
>Пишу вот так:
>
>ps -ax |grep my_main_process |grep -v |grep -v sh
>if [ $? != 0 ]; then
>cd /usr/home/mitya/my_catalog
>./my_programm
>fi

use pgrep
http://www.freebsd.org/cgi/man.cgi?query=pgrep&apropos=0&sektion=0&manpath=FreeBSD+5.4-RELEASE+and+Ports&format=html

появилась в базовом наборе с FreeBSD-5.3

  Удалить Правка | Высказать мнение | Ответить | Рекомендовать в FAQ | Cообщить модератору | Наверх


Архив | Удалить

Индекс форумов | Темы | Пред. тема | След. тема
Оцените тред (1=ужас, 5=супер)? [ 1 | 2 | 3 | 4 | 5 ]
Пожалуйста, прежде чем написать сообщение, ознакомьтесь с данными рекомендациями.




Партнёры:
PostgresPro
Inferno Solutions
Hosting by Hoster.ru
Хостинг:

Закладки на сайте
Проследить за страницей
Created 1996-2024 by Maxim Chirkov
Добавить, Поддержать, Вебмастеру