about summary refs log tree commit diff stats
path: root/bash/history.bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash/history.bash')
-rw-r--r--bash/history.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/history.bash b/bash/history.bash index d2bdceb..4a458fb 100644 --- a/bash/history.bash +++ b/bash/history.bash
@@ -29,7 +29,7 @@ HISTCONTROL=erasedups
29# identical to 'ignorespace'." -- info (bash)Bash Variables 29# identical to 'ignorespace'." -- info (bash)Bash Variables
30HISTIGNORE='&:[ ]*' 30HISTIGNORE='&:[ ]*'
31# Other commands to ignore 31# Other commands to ignore
32HISTIGNORE="$HISTIGNORE:ls:exit:cd" 32HISTIGNORE="$HISTIGNORE:ls:exit:cd:p"
33 33
34# Automatically append to HISTFILE on every command 34# Automatically append to HISTFILE on every command
35PROMPT_COMMAND="history -a; ${PROMPT_COMMAND:-:}" 35PROMPT_COMMAND="history -a; ${PROMPT_COMMAND:-:}"