Skip to content

Commit

Permalink
Change to lowercase button (#2143)
Browse files Browse the repository at this point in the history
* Change to lowercase button

* update
  • Loading branch information
jimcat8 authored Jul 1, 2024
1 parent 4b47037 commit 0512fcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/books/admin_guide/03-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -864,14 +864,14 @@ The commands specific to `less` are:

| Command | Action |
| ----------------- | ----------------------------------------------- |
| ++h++ | Help. |
| ++"h"++ or ++h++ | Help. |
| ++arrow-up++ ++arrow-down++ ++arrow-right++ ++arrow-left++ | Move up, down a line, or to the right or left. |
| ++enter++ | Move down one line. |
| ++space++ | Move down one page. |
| ++page-up++ and ++page-down++ | Move up or down one page. |
| ++"g"++ and ++g++ | Move to the first and last pages |
| `/text` | Search for text. |
| ++q++ | Quit the `less` command. |
| ++"q"++ or ++q++ | Quit the `less` command. |

### `cat` command

Expand Down Expand Up @@ -1000,7 +1000,7 @@ adm:x:3:4:adm:/var/adm/:/sbin/nologin
| `-o file` | Saves the sort to the specified file. |
| `-t` | Specify a delimiter, which requires that the contents of the corresponding file must be regularly delimited column contents, otherwise they cannot be sorted properly. |
| `-r` | Reverse the order of the result. Used in conjunction with the `-n` option to sort in order from largest to smallest. |
| `-u` | Remove duplicates after sorting. Equivalent to `sort file uniq`. |
| `-u` | Remove duplicates after sorting. Equivalent to `sort FILE | uniq` command. |
The `sort` command sorts the file only on the screen. The file is not modified by the sorting. To save the sort, use the `-o` option or an output redirection `>`.
Expand Down

0 comments on commit 0512fcd

Please sign in to comment.