Add option for show in the command execution time stamp in the history

This commit is contained in:
dongweiming 2013-06-30 20:46:10 +08:00
commit 77cf869605
2 changed files with 17 additions and 2 deletions

View file

@ -13,8 +13,18 @@ alias please='sudo'
#alias g='grep -in'
# Show history
alias history='fc -l 1'
if [ "$HIST_STAMPS" = "mm/dd/yyyy" ]
then
alias history='fc -fl 1'
elif [ "$HIST_STAMPS" = "dd.mm.yyyy" ]
then
alias history='fc -El 1'
elif [ "$HIST_STAMPS" = "yyyy-mm-dd" ]
then
alias history='fc -il 1'
else
alias history='fc -l 1'
fi
# List direcory contents
alias lsa='ls -lah'
alias l='ls -la'