Lines Matching refs:command
444 def exec_raw_no_follow(self, command): argument
445 if isinstance(command, bytes):
446 command_bytes = command
448 command_bytes = bytes(command, encoding="utf8")
483 def exec_raw(self, command, timeout=10, data_consumer=None): argument
484 self.exec_raw_no_follow(command)
492 def exec_(self, command, data_consumer=None): argument
493 ret, ret_err = self.exec_raw(command, data_consumer=data_consumer)
713 if args.command is not None or args.filesystem or len(args.files):
750 if args.command is not None:
751 execbuffer(args.command.encode("utf-8"))
766 if args.follow or (args.command is None and not args.filesystem and len(args.files) == 0):