MCPcopy Create free account
hub / github.com/Vector35/debugger / cmd_line

Method cmd_line

api/python/debuggercontroller.py:1174–1184  ·  view source on GitHub ↗

The command line arguments of the target. (read/write) This can be set before launching the target to specify the command line arguments. The arguments are supplied as a single string. The string is NOT shell expanded, which means the user must properly escape it if needed.

(self)

Source from the content-addressed store, hash-verified

1172
1173 @property
1174 def cmd_line(self) -> str:
1175 """
1176 The command line arguments of the target. (read/write)
1177
1178 This can be set before launching the target to specify the command line arguments. The arguments are supplied as
1179 a single string. The string is NOT shell expanded, which means the user must properly escape it if needed.
1180
1181 :getter: returns the command line arguments
1182 :setter: sets the command line arguments
1183 """
1184 return dbgcore.BNDebuggerGetCommandLineArguments(self.handle)
1185
1186 @cmd_line.setter
1187 def cmd_line(self, arguments: str) -> None:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected