Lines Matching refs:command
86 def adjust_command(self, stage, command): argument
87 super().adjust_command(stage, command)
94 if not isinstance(command, list):
96 cmdlist = command.split()
98 cmdlist = command
101 …nd: stage is {}; inserting netns stuff in command [{}] list [{}]'.format(stage, command, cmdlist))
110 command = ' '.join(cmdlist)
112 command = cmdlist
115 print('adjust_command: return command [{}]'.format(command))
116 return command
221 def _exec_cmd(self, stage, command): argument
228 print('_exec_cmd: command "{}"'.format(command))
232 proc.stdin.write((command + '\n').encode())