You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The utility would first execute command 1, command 2, command 3, command 4 with a timeout of 5 seconds. Once a command has finished (whether it exited 0 or got terminated because of the timeout) the next command will be executed. At all times we should have a maximum of 4 commands running.
For now it is not important to display the output of the child processes. The output can be sent to /dev/null. It is also not important to check the return code of the child processes.
Btw, this code will eventually be integrated in the Retrace executable.
The text was updated successfully, but these errors were encountered:
For the fuzzing efforts we'd like to have a utility that can execute commands in parallel/concurrently.
Usage:
The content of the command file (e.g.:
/tmp/cmd.txt
) looks like:We could execute this command file like this:
The utility would first execute
command 1
,command 2
,command 3
,command 4
with a timeout of 5 seconds. Once a command has finished (whether it exited0
or got terminated because of the timeout) the next command will be executed. At all times we should have a maximum of 4 commands running.For now it is not important to display the output of the child processes. The output can be sent to
/dev/null
. It is also not important to check the return code of the child processes.Btw, this code will eventually be integrated in the Retrace executable.
The text was updated successfully, but these errors were encountered: