From 620a3ceacb64b12c82b2eb31b8ec49266356abc8 Mon Sep 17 00:00:00 2001 From: Natsuo Kawai Date: Thu, 24 Jun 2021 14:07:27 +0900 Subject: [PATCH] Fix less description (#107) --- courses/linux_basics/command_line_basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/courses/linux_basics/command_line_basics.md b/courses/linux_basics/command_line_basics.md index 04b151c..a5cc757 100644 --- a/courses/linux_basics/command_line_basics.md +++ b/courses/linux_basics/command_line_basics.md @@ -333,7 +333,7 @@ More command displays as much as can fit on the current screen and waits for use ### less Less command is an improved version of more. It displays the contents of a file or a command output, one page at a time. -It allows backward navigation as well as forward navigation in the file and also has search options. We can use arrow keys for advancing backward or forward by one line. For moving forward by one page, press Enter and for moving backward by one page, press b on your keyboard. +It allows backward navigation as well as forward navigation in the file and also has search options. We can use arrow keys for advancing backward or forward by one line. For moving forward by one page, press Space and for moving backward by one page, press b on your keyboard. You can go to the beginning and the end of a file instantly.