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 重定向到文件或变量


- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 获取数字的最后一位 2022-01-01
- 转换 ldap 日期 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01