Home | History | Annotate | Download | only in kati

Lines Matching refs:command

28 #include "command.h"
98 vector<Command*> commands;
100 for (Command* command : commands) {
102 if (command->echo) {
103 printf("%s\n", command->cmd.c_str());
108 int result = RunCommand(shell_, shellflag_, command->cmd.c_str(),
112 if (command->ignore_error) {
114 command->output.c_str(), WEXITSTATUS(result));
116 fprintf(stderr, "*** [%s] Error %d\n", command->output.c_str(),
122 delete command;