blob: b6e6dbb6674dc23863e81cc9de54d1d081e79d64 [file] [log] [blame]
<html lang="en">
<head>
<title>Shell Commands - Debugging with GDB</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Debugging with GDB">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Invocation.html#Invocation" title="Invocation">
<link rel="prev" href="Quitting-GDB.html#Quitting-GDB" title="Quitting GDB">
<link rel="next" href="Logging-Output.html#Logging-Output" title="Logging Output">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1988-2019 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``Free Software'' and ``Free Software Needs
Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
and with the Back-Cover Texts as in (a) below.
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
this GNU Manual. Buying copies from GNU Press supports the FSF in
developing GNU and promoting software freedom.''
-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<a name="Shell-Commands"></a>
<p>
Next:&nbsp;<a rel="next" accesskey="n" href="Logging-Output.html#Logging-Output">Logging Output</a>,
Previous:&nbsp;<a rel="previous" accesskey="p" href="Quitting-GDB.html#Quitting-GDB">Quitting GDB</a>,
Up:&nbsp;<a rel="up" accesskey="u" href="Invocation.html#Invocation">Invocation</a>
<hr>
</div>
<h3 class="section">2.3 Shell Commands</h3>
<p>If you need to execute occasional shell commands during your
debugging session, there is no need to leave or suspend <span class="sc">gdb</span>; you can
just use the <code>shell</code> command.
<a name="index-shell-67"></a>
<a name="index-g_t_0021-68"></a>
<a name="index-shell-escape-69"></a>
<dl><dt><code>shell </code><var>command-string</var><dt><code>!</code><var>command-string</var><dd>Invoke a standard shell to execute <var>command-string</var>.
Note that no space is needed between <code>!</code> and <var>command-string</var>.
If it exists, the environment variable <code>SHELL</code> determines which
shell to run. Otherwise <span class="sc">gdb</span> uses the default shell
(<samp><span class="file">/bin/sh</span></samp> on Unix systems, <samp><span class="file">COMMAND.COM</span></samp> on MS-DOS, etc.).
</dl>
<p>The utility <code>make</code> is often needed in development environments.
You do not have to use the <code>shell</code> command for this purpose in
<span class="sc">gdb</span>:
<a name="index-make-70"></a>
<a name="index-calling-make-71"></a>
<dl><dt><code>make </code><var>make-args</var><dd>Execute the <code>make</code> program with the specified
arguments. This is equivalent to &lsquo;<samp><span class="samp">shell make </span><var>make-args</var></samp>&rsquo;.
</dl>
</body></html>