Next: GDB/MI Miscellaneous Commands, Previous: GDB/MI Target Manipulation, Up: GDB/MI
-target-file-put
Command-target-file-put hostfile targetfile
Copy file hostfile from the host system (the machine running gdb) to targetfile on the target system.
The corresponding gdb command is `remote put'.
(gdb) -target-file-put localfile remotefile ^done (gdb)
-target-file-get
Command-target-file-get targetfile hostfile
Copy file targetfile from the target system to hostfile on the host system.
The corresponding gdb command is `remote get'.
(gdb) -target-file-get remotefile localfile ^done (gdb)
-target-file-delete
Command-target-file-delete targetfile
Delete targetfile from the target system.
The corresponding gdb command is `remote delete'.
(gdb) -target-file-delete remotefile ^done (gdb)