1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-02 05:17:58 +01:00
tldr/pages/common/less.md

26 lines
335 B
Markdown
Raw Normal View History

2013-12-08 09:56:16 +01:00
# less
> Opens a file for reading
> Allows movement and search
> Doesn't read the entire file (suitable for logs)
2013-12-08 09:56:16 +01:00
- open a file
2013-12-08 09:56:16 +01:00
`less {{source_file}}`
2013-12-08 09:56:16 +01:00
- page up / down
2013-12-08 09:56:16 +01:00
`d (next), D (previous)`
- go to start / end of file
2013-12-08 09:56:16 +01:00
`g (start), G (end)`
- search for a string
2013-12-08 09:56:16 +01:00
`/{{something}} then n (next), N (previous)`
2013-12-08 09:56:16 +01:00
- exit
2013-12-08 09:56:16 +01:00
`q`