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