Skip to main content

All Questions

Tagged with
2 votes
1 answer
1k views

How to get the current IO utilization in percentage from the command line on Windows 10?

I already know how to get the CPU usage percentage: wmic cpu get loadpercentage That returns: LoadPercentage 21 But what about the IO? Meaning the total disk utilization in percentage, or one per ...
Majd's user avatar
  • 21
0 votes
1 answer
43 views

How to save output of python-swiftclient to file when dowloading a directory?

When I download files from a cloud with python-swiftclient sometimes I get errors like this one: Error downloading object 'uploads/1/image.png': Object GET failed: https://orbit.brightbox.com/v1/...
Hirurg103's user avatar
  • 313
6 votes
1 answer
2k views

Windows: Determining which output stream # (1-9) console output is coming from?

I've seen questions in the past about "highlighting" different output streams between STDOUT and STDERR, but I was wondering if there was maybe a simpler way to do this on Windows. The reason I ...
Coruscate5's user avatar
  • 1,054
3 votes
0 answers
1k views

Is there a way to get real time stdout and stderr from a process spawned by psexec on the same streams (pipes) as psexec

My question is very close to this question here with an additional constraint related to time-outs I'm using Jenkins to start some automated testing and then to capture the stdout (and stderr) of the ...
Tuffwer's user avatar
  • 191
0 votes
1 answer
565 views

In a single terminal window capture the command to start a.out 3 times each running as background job

On linux terminal window is there a way i can start a program like ./a.out 3 times each running as background jobs. I was told that IO redirection is helpful.
cyber02203's user avatar