我正在使用命令获取补丁列表:
sudo yum --setopt=history_list_view=commands history list all
输出:
ID | Command line | Date and time | Action(s) | Altered
13 | remove wget | 2018-10-16 08:56 | Erase | 2
12 | install sssd-1.12.4-47.e | 2018-10-16 03:09 | Update | 4 ss
11 | install unzip-6.0-2.el6_ | 2018-10-15 09:27 | Update | 1
10 | install sqlite-3.6.20-1. | 2018-10-15 09:26 | Update | 1
9 | install pam-1.1.1-20.el6 | 2018-10-15 09:22 | Update | 1
8 | install libxml2-python-2 | 2018-10-15 09:20 | Update | 2
7 | install curl.x86_64 | 2018-10-15 08:56 | Update | 2
6 | install dhclient.x86_64 | 2018-10-15 08:55 | Update | 2
5 | install openssh.x86_64 | 2018-10-15 08:50 | Update | 3
4 | install samba-winbind-3. | 2018-10-15 04:59 | Update | 4
3 | install zsh-html.x86_64 | 2018-10-12 06:57 | Install | 1
2 | install samba | 2017-01-05 03:17 | I, U | 5
1 | install wget | 2017-01-05 03:08 | Update | 1
我该如何处理并仅从命令行列获取补丁名称?
答案 0 :(得分:-1)
您可以使用awk
这样来获得仅软件包名称:
sudo yum --setopt=history_list_view=commands history list all | awk -F '|' 'NR>2{print $2}' | awk 'NF{print $2}'
第一个awk表达式按|
个字符对每个字符串进行拆分,并为您提供第二列(除了前两行NR>2
以外,它们描述了表的标题)。第二个awk表达式将空格分隔为第二列,并为您提供程序包名称,以及过滤空行(more info about NF in awk)的方式。
输出如下:
curl.x86_64
dhclient.x86_64
openssh.x86_64
zsh-html.x86_64
samba
wget
如果您需要过滤,例如通过 Action
字段,首先需要附加的grep
。