# Opening manuals in terminal will usually be piped with less
man git
# Search forward in less. n --> forward, N --> backwards
/keyword
# Search backward in less,
?keyword
# View help for less
SHIFT + h
Showing posts with label less. Show all posts
Showing posts with label less. Show all posts
Tuesday, September 15, 2009
Searching in Less
Sunday, September 13, 2009
Pipe less with colors
# Normal pipe will not output ANSI colors
ruby twitpow.rb history | less
# There is an entry in "less --help" that says
-r -R .... --raw-control-chars --RAW-CONTROL-CHARS
Output "raw" control characters.
# Pipe less with ANSI colors!
ruby twitpow.rb history | less -r
Subscribe to:
Posts (Atom)