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)
| 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: |
nothing calls this directly
no outgoing calls
no test coverage detected