我想获取java版本的所有替代项的列表,选择一个并在脚本中设置它,但选项--list没有按预期工作:
alternatives --list java
alternatives version 1.7.4 - Copyright (C) 2001 Red Hat, Inc.
This may be freely redistributed under the terms of the GNU Public License.
usage: alternatives --install <link> <name> <path> <priority>
[--initscript <service>]
[--family <family>]
[--slave <link> <name> <path>]*
alternatives --remove <name> <path>
alternatives --auto <name>
alternatives --config <name>
alternatives --display <name>
alternatives --set <name> <path>
alternatives --list
common options: --verbose --test --help --usage --version --keep-missing
--altdir <directory> --admindir <directory>
目前我用/etc/alternatives
创建了自己的列表,但我并不满意。我如何才能得到这样的列表:
# alternatives --config java
There are 2 programs which provide 'java'.
Selection Command
-----------------------------------------------
+ 1 java-1.7.0-openjdk.x86_64 (/usr/lib/jvm/java-1.7.0-openjdk-1.7.0.191-2.6.15.4.el7_5.x86_64/jre/bin/java)
* 2 java-1.8.0-openjdk.x86_64 (/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.181-3.b13.el7_5.x86_64/jre/bin/java)
2条答案
按热度按时间gj3fmq9x1#
看起来选项--list不带参数,这是手册概要中的一个bug。此外,为了管理我的java版本,我应该尝试env变量。
(The错误已报告为https://github.com/fedora-sysv/chkconfig/issues/11)
dohp0rv52#
使用此命令
alternatives --list
获取cli上的可用版本。