如何获得我正在使用的命令的完整path?
例如,我已经安装了jdk到/opt/Oracle/jdk1.7.0_25 ,我的PATH如下所示:
/opt/Oracle/jdk1.7.0_25/bin/:/usr/lib/x86_64-linux-gnu/qt4/bin:/home/unimous/bin:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games.
我想从java获取/opt/Oracle/jdk1.7.0_25/bin/java 。
比较两个文本文件相互
在linux中刚性设置JAVA_HOMEvariables
我是否可以检测到从长期运行的后台进程中提前退出?
linux:系统调用改变了吗?
git的“make”中有哪些文件需要运行git?
在Java中有什么办法共享内存位置来交换一些实时的小包?
(C,linux)知道networking接口是无线还是有线
一个很好的例子,在PHP中使用RSA
使用linux访问并行端口
运行aws cli时Pyexpat导入错误
which java
应该给你完整的路径。
这也适用于linux中的任何其他命令,只要使用which command_name 。
这取决于你的分布,在debian和基于debian的发行版中你有更新的选择
而对于你的Java你做例如:
update-alternatives –install“/ usr / bin / java”“java”“/opt/Oracle/jdk1.7.0_25/bin/java”3
Help section on update-alternatives update-alternatives: --install needs <link> <name> <path> <priority> Usage: update-alternatives [<option> ...] <command> Commands: --install <link> <name> <path> <priority> [--slave <link> <name> <path>] ... add a group of alternatives to the system. --remove <name> <path> remove <path> from the <name> group alternative. --remove-all <name> remove <name> group from the alternatives system. --auto <name> switch the master link <name> to automatic mode. --display <name> display information about the <name> group. --query <name> machine parseable version of --display <name>. --List <name> display all targets of the <name> group. --get-selections List master alternative names and their status. --set-selections read alternative status from standard input. --config <name> show alternatives for the <name> group and ask the user to select which one to use. --set <name> <path> set <path> as alternative for <name>. --all call --config on all alternatives. <link> is the symlink pointing to /etc/alternatives/<name>. (eg /usr/bin/pager) <name> is the master name for this link group. (eg pager) <path> is the location of one of the alternative target files. (eg /usr/bin/less) <priority> is an integer; options with higher numbers have higher priority in automatic mode. Options: --altdir <directory> change the alternatives directory. --admindir <directory> change the administrative directory. --log <file> change the log file. --force allow replacing files with alternative links. --skip-auto skip prompt for alternatives correctly configured in automatic mode (relevant for --config only) --verbose verbose operation,more output. --quIEt quIEt operation,minimal output. --help show this help message. --version show the version.
如果你在bash中:
type java
type是一个内置的,通常是一个单独的可执行文件:
$ type type type is a shell builtin $ type which which is hashed (/usr/bin/which)
总结以上是内存溢出为你收集整理的在Linux中,如何获得我正在使用的命令的完整path?全部内容,希望文章能够帮你解决在Linux中,如何获得我正在使用的命令的完整path?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)