In Linux, if you use a terminal operating system (sh, bash, zsh, fish, etc.), then there is a very powerful and convenient command calledhistory
. Its purpose is to allow you to view all the command records entered in the terminal before, and to easily and quickly execute a command or modify some parameters before re-executing it. Let's take a look at the commonly used commands for Linux history:
1. Linux history view all historical command lists
When using a terminal, we often enter very long commands, but sometimes we need to execute similar commands again, which can be used in bash or zsh terminalshistory
Command to view the commands entered before. Enter the following command in the terminal to view the historical command list:
history
This command can display the last 500 command records previously entered into the terminal. Each command has a corresponding number, and the number starts from 1.
2. View the history of specific Linux commands
If you need to view the history of a specific command, you can usehistory
Use a combination of commands and grep commands, for example:
history | grep "ls"
This command will output all the command records containing "ls" that have been entered before, includingls
、 ls -l
andls /etc
Wait for the order.
3. Usehistory
Repeat the command
When executing commands in a terminal, we may need to execute commands that have been used several times. and usehistory
Commands can be easily found and executed repeatedly.
For example, if you want to execute a command numbered 42 again, you can use the following command:
!42
In addition, you can also use exclamation marks (!) commands in the quick operation history, such as:
-
!!
Repeat the previous command -
!-2
Repeat the penultimate command -
!n
Repeat the nth command, e.g.!3
Indicates repeated execution of the third command -
!string
Repeat the most recent command starting with string
4. Controlhistory
Number of records
By default,history
The command will record the 1,000 most recently entered commands, but if the number of commands entered is very large, this number may not meet the requirements, so it can be setHISTSIZE
Variables to expand or shrinkhistory
Number of records.
For example, the following command willhistory
The number of records is limited to 2000:
export HISTSIZE=2000
5. Linux history display time
In addition to the command number and command content,history
You can also record the timestamp of each command. If you need to view the execution time of the command, you can use the following command:
export HISTTIMEFORMAT="%F %T "
This command willhistory
The date and timestamp of each command execution is displayed when output.
6、Linux clear history
Clearhistory
Record, whenhistory
When records become huge, we may need to clear all history to save hard disk space or data privacy and security considerations. You can use the following command to clear the history:
history -c
This command will completely clear allhistory
Record.
7. Linux history file location
In Linux systems,history
The historical commands recorded by the command are saved in a file. This file is usually called a "history file" and is located in the user's home directory.
For most common Linux distributions, the default location of history files is~/.bash_history
. in~
Represents the user's home directory,.bash_history
It is a hidden file, can be usedls -a
The command displays hidden files.
Take Bash as an example. After you enter a command in the terminal, the command record will be appended to the history file. Every time a new terminal session is opened,history
The command reads the file and displays the history on the terminal.
You can use a text editor to open the history file for viewing or editing, for example:
vi ~/.bash_history
Or you can use it directlycat
Command to view its contents:
cat ~/.bash_history
It should be noted that the history file may contain only the most recent part of the commands, because its size is limited by the number of history records.
It is worth mentioning that different shells may use different historical files, such as Zsh~/.zsh_history
, Fish~/.config/fish/fish_history
. However, in most common Linux distributions, Bash is used by default, and the corresponding historical files are~/.bash_history
。
For more details, please refer to:
Detailed explanation of the usage of history commands under Linux