Linux less command

In Linux, the “less” command is a pager program used to view the contents of files or the output of other commands one page at a time. It allows you to scroll through large files or command output interactively. Here’s how to use the “less” command:

  1. Open a Terminal:
    Launch a terminal emulator on your Linux system.
  2. Type the “less” command:
    The basic syntax of the “less” command is as follows:
   less [options] [file(s)]
  • The “[file(s)]” parameter represents the name(s) of the file(s) you want to view. You can specify multiple file names separated by spaces.
  • If you don’t provide any file name, “less” will read input from the standard input (e.g., the output of a command or piped input). For example, to view the contents of a file called “file.txt”, you can use the following command:
   less file.txt

The “less” command will display the contents of “file.txt” in the terminal, one page at a time.

  1. Navigating within “less”:
    Once you have opened a file with “less”, you can navigate through it using the following keys:
  • Use the Up and Down arrow keys or the Page Up and Page Down keys to scroll through the file.
  • Press the Spacebar to scroll one page down.
  • Press the B key to scroll one page up.
  • Press the G key to go to the end of the file.
  • Press the 1G or the Home key to go to the beginning of the file.
  • Press the / key to search for a specific pattern within the file. Type the pattern and press Enter.
  • Press the n key to search for the next occurrence of the pattern.
  • Press the q key to quit “less” and return to the command prompt.
  1. Using Options:
    The “less” command provides various options to modify its behavior. Some commonly used options include:
  • “-N” (line numbers): Display line numbers along with the contents of the file.
  • “-i” (ignore case): Perform case-insensitive searches.
  • “-S” (chop long lines): Truncate long lines instead of wrapping them.
  • “-F” (quit if one screen): Exit immediately if the entire file fits on one screen. For example, to view a file with line numbers, you can use the following command:
   less -N file.txt
  1. Exiting the Command:
    Once you have finished viewing the file or output using “less”, you can press the q key to quit “less” and return to the command prompt.

The “less” command is a convenient tool for viewing the contents of files or command output interactively. It allows you to navigate through large files easily and search for specific patterns. Use the available options to customize the behavior of “less” according to your needs.