These files are always sourced (never executed directly), so the #!/bin/bash shebang is inert and misleading. Drop it consistently across rc.d/*, profile.d/*, and aliases.d/*.
7 lines
227 B
Plaintext
7 lines
227 B
Plaintext
# Customize history format
|
|
export HISTSIZE=5000
|
|
export HISTFILESIZE=20000
|
|
export HISTTIMEFORMAT="[%d/%m/%Y %H:%M:%S] "
|
|
export HISTCONTROL="ignoreboth"
|
|
export HISTIGNORE="history*:exit:reboot:^rm:[bf]g:ls:ll:help:man:mutt:pass"
|