cisco/systemf

Systemf() needs a way of logging commands.

Opened this issue · 0 comments

Many implementations that call system() build the command, log it, and then call the system() command. Said in code:

int logged_system(char *command) {
    fprintf(stderr, "%s\n", command);
    return system(command);
}

If systemf() doesn't supply an equivalence for this, there will be less adoption.