LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1283|回复: 10

如何写一个脚本,杀死名称中含有指定字符的进程

[复制链接]
发表于 2005-4-28 10:31:47 | 显示全部楼层 |阅读模式
例如,某些进程的名称中含有字符“abcd”
能不能写一个脚本杀掉所有含有这个字符串的进程呢。
#! /bin/sh
PIDS=`ps ax|grep abcd`

for i in $PIDS
do
echo $i
done
我想在for循环中调用kill,但是困难是如何取出进程的id呢?
发表于 2005-4-28 10:39:54 | 显示全部楼层
killall `ps -aux | egrep '*abcd*'`
回复 支持 反对

使用道具 举报

发表于 2005-4-28 10:44:01 | 显示全部楼层
kill `ps ax | grep abcd | grep -v grep| awk '{print $1}'
回复 支持 反对

使用道具 举报

发表于 2005-4-28 10:47:37 | 显示全部楼层
1.killall `ps -aux|grep abcd`

2.kill `ps -aux|grep abcd|awk '{print $2}'`
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-4-28 11:14:08 | 显示全部楼层
两位的方法,都不能用
回复 支持 反对

使用道具 举报

发表于 2005-4-28 11:15:34 | 显示全部楼层
我少了一个反引号

kill `ps ax | grep abcd | grep -v grep| awk '{print $1}'`
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-4-28 11:16:46 | 显示全部楼层
可以了,谢谢
回复 支持 反对

使用道具 举报

发表于 2005-4-28 12:07:25 | 显示全部楼层
Post by troll
我少了一个反引号

kill `ps ax | grep abcd | grep -v grep| awk '{print $1}'`


請教  troll, grep -v grep 的意思是什麼呢? thanks.
回复 支持 反对

使用道具 举报

发表于 2005-4-28 12:25:36 | 显示全部楼层
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
      --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
  -Z, --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>.


一般使用grep时,最后一个记录一定是grep,像上面troll的一定有grep abcd这一行,要将这行去掉,再杀其余的进程
回复 支持 反对

使用道具 举报

发表于 2005-4-28 12:27:22 | 显示全部楼层
pkill -9 '\<abcd\>'
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表