blob: b7ea8f5287ae9521533ff4c6135b45cafc78f36e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
grep -q '\(^[^#]*\)\(\.\|source\) /etc/bash_completion' root/.bashrc || \
cat <<-EOF >> root/.bashrc
source /etc/bash_completion
EOF
sed -i 's/set $BASH_COMPLETION_ORIGINAL_V_VALUE/builtin set $BASH_COMPLETION_ORIGINAL_V_VALUE/g' /usr/share/bash-completion/bash_completion
|