TanmayPatil105 / procfetch

🎨 Yet another command-line system information utility written in C++
https://tanmaypatil105.github.io/procfetch/
GNU General Public License v3.0
23 stars 11 forks source link

Capture stderr output of commands executed by Command.exec() #153

Closed youpong closed 2 months ago

youpong commented 4 months ago

The Problem

In the current implementation, only the standard output is captured because the command is executed by popen(3). Implement it so that it also captures standard error output.

Related Issue

TanmayPatil105 commented 3 months ago

@youpong Is this in progress? I was thinking of making a release soon!

youpong commented 3 months ago

It's in progress. It will probably take a couple of weeks. It's hard to estimate exactly how much work there is because it involves a technical first for me.