diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2012-04-24 18:10:44 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2012-04-24 18:10:44 +0200 |
commit | fc1c79470a57357da25aed54aa1a04471b343aff (patch) | |
tree | e2fd326f599816ea1e8d47936794e864b5c0fde3 /bashrc/common | |
parent | be671434b8945706c44f32c1178b7d67afaae104 (diff) | |
download | dotfiles-fc1c79470a57357da25aed54aa1a04471b343aff.tar.gz dotfiles-fc1c79470a57357da25aed54aa1a04471b343aff.tar.xz dotfiles-fc1c79470a57357da25aed54aa1a04471b343aff.zip |
bashrc/common/shopt: fix timestamp in history
Diffstat (limited to 'bashrc/common')
-rw-r--r-- | bashrc/common/shopt.sh | 2 |
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 |