less Linux command

linux docker vm
Post Reply
dev
Site Admin
Posts: 60
Joined: 09 Mar 2021, 17:52

less Linux command

Post by dev »

less

-N - option to show line numbers
-I - option to ignore case sensitive

navigation:
  • space bar - next page
  • b - previous page
  • g- begining of text file
  • shift+g - end of text file

searching in file:
  • / - forward slash to enter to forward search mode
    /search phrase
    n - for next occurrence
    shift+n - previous occurrence
  • ? - question mark to enter to search mode backwards
    ?search phrase
    n - for next occurrence
    shift+n - previous occurrence
Post Reply