lnav/docs/source/commands.rst

81 lines
2.9 KiB
ReStructuredText
Raw Normal View History

2013-08-01 15:56:00 +00:00
.. _commands:
Command Reference
=================
2014-03-28 13:55:24 +00:00
This reference covers the commands used to control **lnav**. Consult the
`built-in help <https://github.com/tstack/lnav/blob/master/src/help.txt>`_ in
**lnav** for a more detailed explanation of each command.
Note that almost all commands support TAB-completion for their arguments, so
if you are in doubt as to what to type for an argument, you can double tap the
TAB key to get suggestions.
Filtering
---------
The set of log messages that are displayed in the log view can be controlled
with the following commands:
* filter-in <regex> - Only display log lines that match a regex.
* filter-out <regex> - Do not display log lines that match a regex.
* disable-filter <regex> - Disable the given filter.
* enable-filter <regex> - Enable the given filter.
* set-min-log-level <level> - Only display log lines with the given log level
or higher.
Navigation
----------
* goto <line#|N%|time> - Go to the given line number, N percent into the
file, or the given timestamp in the log view.
2015-03-25 06:07:47 +00:00
* relative-goto <line#|N%> - Move the current view up or down by the given
amount.
2015-03-29 21:50:34 +00:00
* next-mark error|warning|search|user|file|partition - Move to the next
bookmark of the given type in the current view.
* prev-mark error|warning|search|user|file|partition - Move to the previous
bookmark of the given type in the current view.
2014-03-28 13:55:24 +00:00
Time
----
* adjust-log-time <date> - Change the timestamps for a log file.
* unix-time <secs-or-date> - Convert a unix-timestamp in seconds to a
human-readable form or vice-versa.
* current-time - Print the current time in human-readable form and as
a unix-timestamp.
Display
-------
* help - Display the built-in help text.
* disable-word-wrap - Disable word wrapping in the log and text file views.
* enable-word-wrap - Enable word wrapping in the log and text file views.
* highlight <regex> - Colorize text that matches the given regex.
* clear-highlight <regex> - Clear a previous highlight.
2014-03-28 13:55:24 +00:00
* switch-to-view <name> - Switch to the given view name (e.g. log, text, ...)
* zoom-to <zoom-level> - Set the zoom level for the histogram view.
* redraw - Redraw the window to correct any corruption.
2014-03-28 13:55:24 +00:00
Output
------
* append-to <file> - Append any bookmarked lines in the current view to the
given file.
* write-to <file> - Overwrite the given file with any bookmarked lines in
2014-11-11 16:44:44 +00:00
the current view. Use '-' to write the lines to the terminal.
2014-03-28 13:55:24 +00:00
* write-csv-to <file> - Write SQL query results to the given file in CSV format.
2014-11-11 16:44:44 +00:00
Use '-' to write the lines to the terminal.
2014-03-28 13:55:24 +00:00
* write-json-to <file> - Write SQL query results to the given file in JSON
2014-11-11 16:44:44 +00:00
format. Use '-' to write the lines to the terminal.
* pipe-to <shell-cmd> - Pipe the bookmarked lines in the current view to a
shell command and open the output in lnav.
* pipe-line-to <shell-cmd> - Pipe the top line in the current view to a shell
command and open the output in lnav.