LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

info

reads documentation in GNU's texinfo format

TLDR

Read manual for command
$ info [command]
copy
Start at top directory
$ info
copy
Go to specific node
$ info -n "[node_name]" [command]
copy
Search in manuals
$ info --apropos=[keyword]
copy
Output to stdout
$ info -o - [command]
copy
Use specific file
$ info -f [file.info]
copy

SYNOPSIS

info [options] [menu-item...]

DESCRIPTION

info reads documentation in GNU's texinfo format. It provides hypertext navigation through structured documentation organized as nodes in a tree.The reader supports navigation between nodes, menus, and cross-references. Common navigation keys: n (next node), p (previous node), u (up), l (last visited), q (quit), / or s (search), Tab (next link), Enter (follow link).

PARAMETERS

MENU-ITEM

Manual page or node to display.
-f FILE
Read specified info file.
-n NODE
Start at named node.
-o FILE
Output to file (- for stdout).
--apropos STRING
Search all manuals for string.
-w, --where
Print location of info file.
--all
Use all matching manuals.
--subnodes
Recursively output menu items.
-k STRING, --index-search STRING
Look up STRING in all indices of all manuals.
--help
Display help information.

INSTALL

sudo apt install info
copy
sudo dnf install info
copy
sudo pacman -S texinfo
copy
sudo apk add texinfo
copy
sudo zypper install info
copy
brew install texinfo
copy
nix profile install nixpkgs#texinfo
copy

CAVEATS

Not all software has info pages. Navigation keys differ from man. Uses Emacs-style keybindings by default. The --apropos search can be slow as it scans all info files.

HISTORY

info was created as part of the GNU project to provide richer documentation than man pages, supporting hypertext features.

SEE ALSO

man(1)

Copied to clipboard
Kai