Tips for viewing History records and adding timestamps in Linux

Tips for viewing History records and adding timestamps in Linux

Tips for viewing History records and adding timestamps in Linux

Anyone familiar with bash must know that you can use history to output the historical commands you have entered, for example

[root@servyou_web ~]# history | more 
  6./test.sh  
  7 vim test.sh  
  8./test.sh

However, only the command is displayed here, and the time when the command was executed is not displayed, because the time is not saved in ~/.bash_history which saves the historical commands.

Add timestamp to history by setting environment variable export HISTTIMEFORMAT="%F %T `whoami` "

[root@servyou_web ~]# export HISTTIMEFORMAT="%F %T `whoami` " 
[root@servyou_web ~]# history | tail 
 1014 2011-06-22 19:17:29 root 15 2011-06-22 19:13:02 root ./test.sh  
 1015 2011-06-22 19:17:29 root 16 2011-06-22 19:13:02 root vim test.sh  
 1016 2011-06-22 19:17:29 root 17 2011-06-22 19:13:02 root ./test.sh  
 1017 2011-06-22 19:17:29 root 18 2011-06-22 19:13:02 root vim test.sh  
 1018 2011-06-22 19:17:29 root 19 2011-06-22 19:13:02 root ./test.sh  
 1019 2011-06-22 19:17:29 root 20 2011-06-22 19:13:02 root vim test.sh  
 1020 2011-06-22 19:17:29 root 21 2011-06-22 19:13:02 root ./test.sh  
 1021 2011-06-22 19:17:29 root 22 2011-06-22 19:13:02 root vim test.sh  
 1022 2011-06-22 19:25:22 root 22 2011-06-22 19:13:02 root vim test.sh  
 1023 2011-06-22 19:25:28 root history | tail

As you can see, the timestamp of the historical commands has been added, but this timestamp has not been added to .bash_history. In fact, this time record is saved in the memory of the current shell process. If you log out and log in again, you will find that the timestamps of the commands executed when you last logged in are all the same value, that is, the time when you logged out.

Nevertheless, for bash with screen, this timestamp can still be valid for a long time. After all, as long as your server is not restarted, screen will not exit, so these times can be retained for a long time. You can also use echo 'export HISTTIMEFORMAT="%F %T `whoami` "' >> /etc/profile and then source it.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Detailed usage of Linux text search command find
  • Detailed explanation of Linux text processing command sort
  • One question to understand multiple parameters of sort command in Linux
  • How to count the number of specific characters in a file in Linux
  • Linux uses join -a1 to merge two files
  • How to deal with the prompt "Operation not permitted" when deleting files in Linux
  • Several ways to run Python programs in the Linux background
  • Python uses paramiko to operate Linux
  • Steps to transfer files and folders between two Linux servers
  • How to get the real path of the current script in Linux

<<:  Detailed tutorial on installing Mysql5.7.19 on Centos7 under Linux

>>:  Summary of Problems in Installing MySQL 5.7.19 under Linux

Recommend

WeChat applet to achieve the revolving lantern effect example

Preface In daily development, we often encounter ...

mysql 8.0.18 mgr installation and its switching function

1. System installation package yum -y install mak...

Install Centos7 using Hyper-v virtual machine

Table of contents introduce Prepare Download syst...

Summary of basic usage of CSS3 @media

//grammar: @media mediatype and | not | only (med...

Thirty HTML coding guidelines for beginners

1. Always close HTML tags In the source code of p...

Semantic web pages XHTML semantic markup

Another important aspect of separating structure ...

Linux kernel device driver memory management notes

/********************** * Linux memory management...

How to install a virtual machine with Windows services on Mac

1. Download the virtual machine Official download...

MySQL column to row conversion, method of merging fields (must read)

Data Sheet: Column to row: using max(case when th...

vue front-end HbuliderEslint real-time verification automatic repair settings

Table of contents ESLint plugin installation in H...

Detailed usage of Vue timer

This article example shares the specific code of ...

Detailed explanation of adding click event in echarts tooltip in Vue

Table of contents need Workaround 1. Set tooltip ...

Sample code for nginx to achieve dynamic and static separation

1. Simple configuration of nginx's dynamic an...

Detailed explanation of JS memory space

Table of contents Overview 1. Stack and Heap 2. V...