任何人都可以建议我如何解析以下命令输出并将特定值存储在变量中。

sestatus

这是该命令的输出

SELinux status:                 enabled
SELinuxfs mount:                /selinux
Current mode:                   enforcing
Mode from config file:          enforcing
Policy version:                 24
Policy from config file:        targeted

在这里,我想将“当前模式”的“enforcing” 存储在变量中。

谁能建议我。

提前致谢。

最佳答案

您可以使用cut或sed,任何实现都可以使用的好方法,

[root@giam20 ~]# sestatus
SELinux status:                 enabled
SELinuxfs mount:                /selinux
Current mode:                   enforcing
Mode from config file:          enforcing
Policy version:                 24
Policy from config file:        targeted
[root@giam20 ~]# variable=`sestatus | grep 'Current mode'|cut -f2 -d ":"`
[root@giam20 ~]# echo $variable
enforcing
[root@giam20 ~]#

这比上面写的简单。

09-27 23:22