lib/history (HIST_STAMPS): Make it work and add color

This commit is contained in:
Joao Vitorino
2021-07-29 00:12:00 -03:00
committed by Koichi Murase
parent 20cbf8d226
commit 8a96cc45c6
2 changed files with 12 additions and 12 deletions

View File

@ -39,11 +39,6 @@ HISTCONTROL="erasedups:ignoreboth"
# Don't record some commands # Don't record some commands
export HISTIGNORE="&:[ ]*:exit:ls:bg:fg:history:clear" export HISTIGNORE="&:[ ]*:exit:ls:bg:fg:history:clear"
# Use standard ISO 8601 timestamp
# %F equivalent to %Y-%m-%d
# %T equivalent to %H:%M:%S (24-hours format)
HISTTIMEFORMAT='%F %T '
# Enable incremental history search with up/down arrows (also Readline goodness) # Enable incremental history search with up/down arrows (also Readline goodness)
# Learn more about this here: http://codeinthehole.com/writing/the-most-important-command-line-tip-incremental-hi # Learn more about this here: http://codeinthehole.com/writing/the-most-important-command-line-tip-incremental-hi
# bash4 specific ?? # bash4 specific ??
@ -52,10 +47,14 @@ bind '"\e[B": history-search-forward'
bind '"\e[C": forward-char' bind '"\e[C": forward-char'
bind '"\e[D": backward-char' bind '"\e[D": backward-char'
# Use standard ISO 8601 timestamp
# %F equivalent to %Y-%m-%d
# %T equivalent to %H:%M:%S (24-hours format)
# Show history # Show history
#case $HIST_STAMPS in case $HIST_STAMPS in
#"mm/dd/yyyy") alias history='fc -fl 1' ;; "mm/dd/yyyy") HISTTIMEFORMAT=$(echo -e '\033[31m[%m/%d/%Y] \033[36m[%T]\033[0m ');;
#"dd.mm.yyyy") alias history='fc -El 1' ;; "dd.mm.yyyy") HISTTIMEFORMAT=$(echo -e '\033[31m [%d.%m.%Y] \033[36m[%T]\033[0m ') ;;
#"yyyy-mm-dd") alias history='fc -il 1' ;; "yyyy-mm-dd") HISTTIMEFORMAT=$(echo -e '\033[31m%Y-%m-%d] \033[36m[%T]\033[0m ') ;;
#*) alias history='fc -l 1' ;; *) HISTTIMEFORMAT=$(echo -e '\033[31m%F \033[36m%T\033[0m ') ;;
#esac esac

View File

@ -44,7 +44,8 @@ OSH_THEME="font"
# Uncomment the following line if you want to change the command execution time # Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output. # stamp shown in the history command output.
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# HIST_STAMPS="mm/dd/yyyy" # IF not set, default value is: yyyy-mm-dd
# HIST_STAMPS="yyyy-mm-dd"
# Uncomment the following line if you do not want OMB to overwrite the existing # Uncomment the following line if you do not want OMB to overwrite the existing
# aliases by the default OMB aliases defined in lib/*.sh # aliases by the default OMB aliases defined in lib/*.sh