This commit is contained in:
Marc Beninca 2024-11-16 03:23:19 +01:00
parent 5139c4367e
commit 964df6e8dc
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -34,7 +34,7 @@ shell_configure() {
case "${SH}" in case "${SH}" in
"bash") "bash")
# completion # completion
file="/usr/share/bash-completion/bash_completion" local file="/usr/share/bash-completion/bash_completion"
if [ -f "${file}" ]; then if [ -f "${file}" ]; then
. "${file}" . "${file}"
fi fi
@ -43,8 +43,7 @@ shell_configure() {
HISTSIZE=-1 HISTSIZE=-1
HISTTIMEFORMAT="%Y%m%d %H%M%S " HISTTIMEFORMAT="%Y%m%d %H%M%S "
;; ;;
*) *) ;;
;;
esac esac
} }
shell_configure shell_configure