Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

9.2. Editing source files

To edit the lines in a source file, use the edit command. The editing program of your choice is invoked with the current line set to the active line in the program. Alternatively, there are several ways to specify what part of the file you want to print if you want to see other parts of the program.

Here are the forms of the edit command most commonly used:

edit

Edit the current source file at the active line number in the program.

edit number

Edit the current source file with number as the active line number.

edit function

Edit the file containing function at the beginning of its definition.

edit filename:number

Specifies line number in the source file filename.

edit filename:function

Specifies the line that begins the body of the function function in the file filename. You only need the file name with a function name to avoid ambiguity when there are identically named functions in different source files.

edit *address

Specifies the line containing the program address address. address may be any expression.

9.2.1. Choosing your editor

You can customize gdb to use any editor you want [1]. By default, it is /bin/ex, but you can change this by setting the environment variable EDITOR before using gdb. For example, to configure gdb to use the vi editor, you could use these commands with the sh shell:
EDITOR=/usr/bin/vi
export EDITOR
gdb ...
or in the csh shell,
setenv EDITOR /usr/bin/vi
gdb ...

Notes

[1]

The only restriction is that your editor (say ex), recognizes the following command-line syntax:
ex +number file
The optional numeric value +number designates the active line in the file.

 
 
  Published under the terms of the GNU General Public License Design by Interspire