grep的或操作
[root@irac01 ~]# ps -ef|grep '2034\|2035\|2005\|2037'
gdm 2005 1 0 Apr17 ? 00:00:12 /usr/libexec/gconfd-2
gdm 2034 1998 0 Apr17 ? 00:00:17 metacity
gdm 2035 1998 0 Apr17 ? 00:01:15 /usr/libexec/gdm-simple-greeter
gdm 2037 1998 0 Apr17 ? 00:00:20 gnome-power-manager
root 2060 985 0 11:07 pts/2 00:00:00 grep 2034\|2035\|2005\|2037
[root@irac01 ~]# ps -ef|grep -E "2034|2035|2005|2037"
gdm 2005 1 0 Apr17 ? 00:00:12 /usr/libexec/gconfd-2
gdm 2034 1998 0 Apr17 ? 00:00:17 metacity
gdm 2035 1998 0 Apr17 ? 00:01:15 /usr/libexec/gdm-simple-greeter
gdm 2037 1998 0 Apr17 ? 00:00:20 gnome-power-manager
root 2062 985 0 11:07 pts/2 00:00:00 grep -E 2034|2035|2005|2037
gdm 2005 1 0 Apr17 ? 00:00:12 /usr/libexec/gconfd-2
gdm 2034 1998 0 Apr17 ? 00:00:17 metacity
gdm 2035 1998 0 Apr17 ? 00:01:15 /usr/libexec/gdm-simple-greeter
gdm 2037 1998 0 Apr17 ? 00:00:20 gnome-power-manager
root 2060 985 0 11:07 pts/2 00:00:00 grep 2034\|2035\|2005\|2037
[root@irac01 ~]# ps -ef|grep -E "2034|2035|2005|2037"
gdm 2005 1 0 Apr17 ? 00:00:12 /usr/libexec/gconfd-2
gdm 2034 1998 0 Apr17 ? 00:00:17 metacity
gdm 2035 1998 0 Apr17 ? 00:01:15 /usr/libexec/gdm-simple-greeter
gdm 2037 1998 0 Apr17 ? 00:00:20 gnome-power-manager
root 2062 985 0 11:07 pts/2 00:00:00 grep -E 2034|2035|2005|2037
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29135257/viewspace-2154550/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 寶付揭秘Linux支付命令操作之grep、sed、awkLinux
- 【Linux進階】使用grep、find、sed以及awk進行文字操作Linux
- Linux grep命令的使用Linux
- grep 的使用場景
- vim 的 grep 外掛`Leaderf rg`:grep 和模糊匹配的完美結合
- grep 、awk
- linux下的find 和 grepLinux
- Linux 中 grep xxx的用法Linux
- 獲取或操作DOM元素特性的幾種方式
- Linux grep 命令Linux
- [Bash] grep command
- linux-grepLinux
- grep跨行匹配
- [20210802]grep奇怪的過濾.txt
- 如何使用grep命令的排除功能
- 【Linux命令】grep命令Linux
- git grep命令用法Git
- linux命令之grepLinux
- grep、find命令整理
- 【SHELL】grep 命令用法
- grep 命令系列:使用 grep 命令來搜尋多個單詞
- 文字三劍客之grep的用法
- Grep(Regex)中的正規表示式
- Linux 中 grep -P引數的作用Linux
- 掌握Linux中的12個grep命令Linux
- 如何使用 Linux 的 grep 和 fgrep 命令Linux
- Mac置入睡眠狀態或喚醒的操作方法Mac
- grep精確匹配搜尋某個單詞的用法 (附: grep高效用法小結))
- grep 多行 正則匹配
- linux中grep基本用法Linux
- What does "xargs grep" do?
- grep 第四天
- shell 三劍客—grep
- grep 工具實用頁
- Linux基礎命令---grepLinux
- Linux命令篇 - grep 命令Linux
- [20180417]奇怪的grep過濾問題.txt
- 【Shell】sed xargs grep awk的組合用法