Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P3
-
Resolution: Won't Fix
-
Affects Version/s: 1.2.0
-
Fix Version/s: None
-
Component/s: other-libs
-
Labels:
-
Subcomponent:
-
CPU:sparc
-
OS:solaris_8
Description
When you try to tee the output of `java -fullversion` to a file, nothing appears in the file
# java -fullversion
java full version "javavm12_dev06_1999.01.07"
# java -fullversion | tee /tmp/version
java full version "javavm12_dev06_1999.01.07"
# more /tmp/version
#
When you try to redirect the output of `java -fullversion` to a file, nothing appears in the file and the output appears on the terminal window
# java -fullversion >/tmp/version
java full version "javavm12_dev06_1999.01.07"
# more /tmp/version
#
# java -fullversion
java full version "javavm12_dev06_1999.01.07"
# java -fullversion | tee /tmp/version
java full version "javavm12_dev06_1999.01.07"
# more /tmp/version
#
When you try to redirect the output of `java -fullversion` to a file, nothing appears in the file and the output appears on the terminal window
# java -fullversion >/tmp/version
java full version "javavm12_dev06_1999.01.07"
# more /tmp/version
#