Lines Matching refs:stdout
46 stdout = command.output('git', 'grep', path, raise_on_error=False)
47 if not stdout:
49 fname = stdout.split(':')[0]
52 stdout = command.run_one('sed', '-i', rf'\|{path}|d', fname,
53 capture=True).stdout
55 stdout = command.output('git', 'add', fname)
69 stdout = command.output('git', 'grep', '-l', board)
72 for line in stdout.splitlines():
109 stdout = command.output('find', path, raise_on_error=False)
110 for fname in stdout.splitlines():
115 stdout = command.output('git', 'rm', '-r', *real)
128 stdout = command.output('git', 'commit', '-s', '-m', msg)