blob: 001c5448b35061fd3856a493af6883a7c2a1d5bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
--- bash_completion.orig Wed Mar 31 19:45:32 2004
+++ bash_completion Sat Jun 5 16:53:42 2004
@@ -31,14 +31,14 @@
if [ -n "${FUNCNAME:-}" ]; then
# we're being sourced from within a function, so we can't use
# 'declare', as this will create local variables within a function
- BASH_COMPLETION=${BASH_COMPLETION:-/etc/bash_completion} 2>/dev/null
- BASH_COMPLETION_DIR=${BASH_COMPLETION_DIR:=/etc/bash_completion.d} \
+ BASH_COMPLETION=${BASH_COMPLETION:-/usr/local/etc/bash_completion} 2>/dev/null
+ BASH_COMPLETION_DIR=${BASH_COMPLETION_DIR:=/usr/local/etc/bash_completion.d} \
2>/dev/null
else
- declare -r BASH_COMPLETION=${BASH_COMPLETION:-/etc/bash_completion} \
+ declare -r BASH_COMPLETION=${BASH_COMPLETION:-/usr/local/etc/bash_completion} \
2>/dev/null
declare -r \
- BASH_COMPLETION_DIR=${BASH_COMPLETION_DIR:=/etc/bash_completion.d} \
+ BASH_COMPLETION_DIR=${BASH_COMPLETION_DIR:=/usr/local/etc/bash_completion.d} \
2>/dev/null
fi
@@ -1056,7 +1056,7 @@
else
len=${#cur}
idx=0
- for pval in $( /usr/sbin/postconf -m ); do
+ for pval in $( postconf -m ); do
if [[ "$cur" == "${pval:0:$len}" ]]; then
COMPREPLY[$idx]="$pval:"
idx=$(($idx+1))
@@ -1132,7 +1132,7 @@
fi
len=${#cur}
idx=0
- for pval in $( /usr/sbin/postconf | cut -d ' ' -f 1 ); do
+ for pval in $( postconf | cut -d ' ' -f 1 ); do
if [[ "$cur" == "${pval:0:$len}" ]]; then
COMPREPLY[$idx]="$pval$eqext"
idx=$(($idx+1))
|