UNIX in a Nutshell: System V Edition

UNIX in a Nutshell: System V EditionSearch this book
Previous: Reference: crontabChapter 2
Unix Commands
Next: Reference: csh
 

cscope

cscope [options] files

Interactive utility for finding code fragments in one or more C, lex, or yacc source files. cscope builds a symbol cross reference (named cscope.out by default) and then calls up a menu. The menu prompts the user to search for functions, macros, variables, preprocessor directives, etc. Type ? to list interactive commands. Subsequent calls to cscope rebuild the cross reference if needed (i.e., if filenames or file contents have changed). Source filenames can be stored in a file cscope.files. This file can then be specified instead of files. Options -I, -p, and -T are also recognized when placed in cscope.files.

Options

-b

Build the symbol cross reference only.

-c

Create output in ASCII (don't compress data).

-C

Ignore uppercase/lowercase differences in searches.

-d

Don't update the cross reference.

-e

Don't show the ^E prompt between files.

-f out

Name the cross-reference file out instead of cscope.out.

-i in

Check source files whose names are listed in in rather than in cscope.files.

-I dir

Search for include files in dir before searching the default (/usr/include). cscope searches the current directory, then dir, then the default.

-l

Run in line mode; useful from within a screen editor.

-L

Use with -n pat to do a single search.

-p n

Show the last n parts of the filename path. Default is 1 (filename); use 0 to suppress the filename.

-P path

Use with -d to prepend path to filenames in existing cross reference. This lets you run cscope without changing to the directory where the cross reference was built.

-s dir

Look for source files in directory dir instead of in current directory.

-T

Match only the first eight characters of C symbols.

-u

Build cross reference unconditionally (assume all files changed).

-U

Ignore file timestamps (assume no files changed).

-V

Print the cscope version on first line of screen.

-n pat

Go to field n of input (starting at 0), then find pat.


Previous: Reference: crontabUNIX in a Nutshell: System V EditionNext: Reference: csh
Reference: crontabBook IndexReference: csh

The UNIX CD Bookshelf NavigationThe UNIX CD BookshelfUNIX Power ToolsUNIX in a NutshellLearning the vi Editorsed & awkLearning the Korn ShellLearning the UNIX Operating System