Redirect java -version to file or variable(将 java -version 重定向到文件或变量)
问题描述
也许这是一个愚蠢的问题,但我试图将java -version"命令的退出重定向到文件或变量,但它不起作用.
Maybe it is a silly question, but I'm trying to redirect the exit of "java -version" command to a file or variable but it doesn't work.
服务器 = Linux CentOS 6
Server = Linux CentOS 6
我在 shell 脚本中的代码
My code in shell script
java -version >> test.txt
我也在尝试将它分配给一个变量:
Also I'm trying to assign it to a variable:
JAVA_CHECK=`java -version`
即使从命令行运行这些命令,它仍然无法正常工作.
Even running those command from command-line it still not working.
当我说它不起作用时,我的意思是命令的退出显示在我的屏幕上,而不是将其重定向到文件或任何地方
when I say it doesnt work, I mean that the exit of the command is being showed in my screen instead to redirect it to a file or wherever
...
推荐答案
java -version 写入 stderr (fileno 2),而不是 stdout (fileno 1).您可以将 stderr 重定向到文件:
java -version writes to stderr (fileno 2), not stdout (fileno 1). You can redirect stderr to a file:
java -version 2> test.txt
# cat test.txt
# java version "1.7.0_25"
# OpenJDK Runtime Environment
# [...]
或者您可以将标准错误重定向到标准输出:
Or you can redirect stderr to stdout:
java_check=$(java -version 2>&1)
# echo "$java_check"
# java version "1.7.0_25" OpenJDK Runtime Environment [...]
这篇关于将 java -version 重定向到文件或变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 java -version 重定向到文件或变量
基础教程推荐
- Struts2 URL 无法访问 2022-01-01
- 使用堆栈算法进行括号/括号匹配 2022-01-01
- Spring AOP错误无法懒惰地为此建议构建thisJoinPoin 2022-09-13
- 无法复制:“比较方法违反了它的一般约定!" 2022-01-01
- RabbitMQ:消息保持“未确认"; 2022-01-01
- REST Web 服务返回 415 - 不支持的媒体类型 2022-01-01
- 问题http://apache.org/xml/features/xinclude测试日志4j 2 2022-01-01
- 如何对 Java Hashmap 中的值求和 2022-01-01
- 存储 20 位数字的数据类型 2022-01-01
- 修改 void 函数的输入参数,然后读取 2022-01-01
