From: Oleg Broytman Date: Tue, 16 Jul 2019 11:13:43 +0000 (+0300) Subject: .shellrc: Process `~/.bash_completion.d` X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=commitdiff_plain;h=1167632cd826a30bc310ed66a3d04a8ef19b9777 .shellrc: Process `~/.bash_completion.d` --- diff --git a/.shellrc b/.shellrc index 051889d..af5408c 100644 --- a/.shellrc +++ b/.shellrc @@ -98,6 +98,12 @@ if test -n "$BASH_VERSION"; then fi fi + if [ -d "$HOME"/.bash_completion.d ]; then + for _compf in "$HOME"/.bash_completion.d/*; do + . $_compf + done + fi + for cmd in builtin cgmem_nice command dbus-launch exec \ killall man nice nohup pidof pidOf KillAll pgrep pkill psg pswg su sudo \ time whence whereis which xargs; do