Categories:
Administration (161)
Adware Spyware (43)
Apache (20)
Bluetooth (127)
DOS Commands (2)
Edge (28)
General (5)
Internet Connection (21)
Internet Explorer (224)
Media Center (14)
Media Player (135)
Mozilla Firefox (22)
MS Access (9)
Performance (204)
PHP (25)
Programming (36)
Security (109)
Silverlight (22)
Tips (144)
Tools (312)
Tutorials (40)
Windows 10 (168)
Windows 7 (1411)
Windows 8 (1712)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (71)
Windows XP (23)
Collections:
Other Resources:
Use NUL to Sink Program Output
How to use the NUL file name to sink program output?
✍: FYIcenter.com
If a program is writing too much out on your screen,
you sink all output to the NUL file name.
For example, if you run JMeter program, it will write some output on your screen:
C:\>\fyicenter\jmeter\bin\jmeter > nul ================================================================================ Don't use GUI mode for load testing, only for Test creation and Test debugging ! For load testing, use NON GUI Mode: jmeter -n -t [jmx file] -l [results file] -e -o [Path to output folder] & adapt Java Heap to your test requirements: Modify HEAP="-Xms512m -Xmx512m" in the JMeter batch file ================================================================================ 12:38:58 AM java.util.prefs.WindowsPreferences <init> WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0 x80000002. Windows RegCreateKeyEx(...) returned error code 5.
You can redirect STDOUT to NUL by adding "> nul" to the command:
C:\>\fyicenter\jmeter\bin\jmeter > nul 12:40:58 AM java.util.prefs.WindowsPreferences <init> WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0 x80000002. Windows RegCreateKeyEx(...) returned error code 5.
To remove the error message, you can redirect STDERR to NUL by adding "2> nul" to the command. Now nothing displayed on the screen:
C:\>\fyicenter\jmeter\bin\jmeter > nul 2> nul
⇒ Use CON to Enter Data to File
2021-04-15, 717👍, 0💬
Popular Posts:
What is "SMS Task Sequence Agent" in my Windows 7 service list? And how is "SMS Task Sequence Agent"...
Can I disable Windows service "Broadcom ASF IP monitoring service v6.0.3" to speedup my computer? Wi...
What is the startup program "CyberLink MediaLibray Service - CLMLSvc_P2G8.exe" on my Windows 8 compu...
What is NetZero Toolbar - United Online NetZero dialup toolbar for Internet Explorer (IE) 7 browser?...
How to verify if your system is connected to the Internet? Windows system has two commands "ipconfig...