On Linux we are using /bin/sh to execute arbitrary shell commands.
Find an alternative command that works on Windows or just use QProcess to directly execute the command (without some shell goodies)
On Linux we are using /bin/sh to execute arbitrary shell commands.
Find an alternative command that works on Windows or just use QProcess to directly execute the command (without some shell goodies)
Status | Assigned | Task | ||
---|---|---|---|---|
Open | brute4s99 | T9997 KDE Connect on Windows | ||
Resolved | nicolasfella | T10001 Runcommand Plugin on Windows |
cmd /C command-goes-here can be used to run command line commands on windows.
An C++ api is mentioned in this stack overflow question.
Windows contains several shells like cmd, powershell and wsl, so we may need to handle that.