summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2012-04-24 18:10:44 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2012-04-24 18:10:44 +0200
commitfc1c79470a57357da25aed54aa1a04471b343aff (patch)
treee2fd326f599816ea1e8d47936794e864b5c0fde3
parentbe671434b8945706c44f32c1178b7d67afaae104 (diff)
downloaddotfiles-fc1c79470a57357da25aed54aa1a04471b343aff.tar.gz
dotfiles-fc1c79470a57357da25aed54aa1a04471b343aff.tar.xz
dotfiles-fc1c79470a57357da25aed54aa1a04471b343aff.zip
bashrc/common/shopt: fix timestamp in history
-rw-r--r--bashrc/common/shopt.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc/common/shopt.sh b/bashrc/common/shopt.sh
index 3552f4d..a1c8cfa 100644
--- a/bashrc/common/shopt.sh
+++ b/bashrc/common/shopt.sh
@@ -14,7 +14,7 @@ export HISTFILESIZE=5000
export HISTSIZE=5000
# save timestamp in history
-export HISTTIMEFORMAT="%+ "
+export HISTTIMEFORMAT="%F %T "
# check window size after each command
shopt -s checkwinsize