共计 863 个字符,预计需要花费 3 分钟才能阅读完成。
要写一个centos系统的初始化脚本,但是centos6和centos7版本有很多命令都不相同,所以为了让脚本在两个版本之间都可以使用,就需要对centos系统版本进行判断。
通过查找各种资料,我发现基本有下面几种查看系统版本的方法:
方法一:
[v_notice]CentOS 7[/v_notice]
[root@i-0ipyzyp0 wordpress]# cat /etc/centos-release
CentOS Linux release 7.3.1611 (Core)
[v_notice]CentOS 6[/v_notice]
[root@172-20-2-15 ~]# cat /etc/centos-release
CentOS release 6.9 (Final)
可以看到,这个方法在两个版本中都可以使用,可以使用sed命令取版本的值
[root@i-0ipyzyp0 wordpress]# cat /etc/redhat-release|sed -r 's/.* ([0-9]+)\..*/\1/'
7
[root@172-20-2-15 ~]# cat /etc/redhat-release|sed -r 's/.* ([0-9]+)\..*/\1/' 6
方法二:
[v_notice]CentOS 7[/v_notice]
[root@i-0ipyzyp0 ~]# rpm -q centos-release
centos-release-7-3.1611.el7.centos.x86_64
[v_notice]CentOS 6[/v_notice]
[root@172-20-2-15 ~]# rpm -q centos-release
centos-release-6-9.el6.12.3.x86_64
如上,这个命令在两个版本中显示结果格式一致,所以我们可以使用cut很轻松的取系统版本的值。
[root@i-0ipyzyp0 ~]# rpm -q centos-release|cut -d- -f3
7
[root@172-20-2-15 ~]# rpm -q centos-release|cut -d- -f3
6
正文完