diff --git a/tldr/history b/tldr/history index 25ea8754..e0693826 100644 --- a/tldr/history +++ b/tldr/history @@ -16,6 +16,10 @@ source: https://github.com/tldr-pages/tldr.git `history {{20}}` +- Display history with timestamps in different formats (only available in Zsh): + +`history -{{d|f|i|E}}` + - Clear the commands history list (only for current Bash shell): `history -c` diff --git a/tldr/linux/last b/tldr/linux/last new file mode 100644 index 00000000..4a2149f3 --- /dev/null +++ b/tldr/linux/last @@ -0,0 +1,42 @@ +--- +syntax: markdown +tags: [tldr, linux] +source: https://github.com/tldr-pages/tldr.git +--- +# last + +> List information of last user logins. +> See also: `lastb`, `login`. +> More information: . + +- List login information (e.g., username, terminal, boot time, kernel) of all users: + +`last` + +- List login information of a specific user: + +`last {{username}}` + +- List information of a specific TTY: + +`last {{tty1}}` + +- List most recent information (by default, the newest are at the top): + +`last | tac` + +- List information of system boots: + +`last "{{system boot}}"` + +- List information with a specific [t]imestamp format: + +`last --time-format {{notime|full|iso}}` + +- List information [s]ince a specific time and date: + +`last --since {{-7days}}` + +- List information (i.e., hostname and IP) of remote hosts: + +`last --dns`