FreeBSD Bugzilla – Attachment 40282 Details for
Bug 63314
fix shells/bash-completion hard coded paths for postfix completion
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 1.70 KB, created by
Toni Viemerö
on 2004-02-24 19:00:31 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Toni Viemerö
Created:
2004-02-24 19:00:31 UTC
Size:
1.70 KB
patch
obsolete
>--- bash_completion.org Tue Feb 24 20:46:16 2004 >+++ bash_completion Tue Feb 24 20:48:00 2004 >@@ -1050,7 +1050,7 @@ > else > len=${#cur} > idx=0 >- for pval in $( /usr/sbin/postconf -m ); do >+ for pval in $( /usr/local/sbin/postconf -m ); do > if [[ "$cur" == "${pval:0:$len}" ]]; then > COMPREPLY[$idx]="$pval:" > idx=$(($idx+1)) >@@ -1089,7 +1089,7 @@ > if [[ $qfile == 1 ]]; then > len=${#cur} > idx=0 >- for pval in $( mailq | \ >+ for pval in $( /usr/local/bin/mailq | \ > sed -e '1d; $d; /^[^0-9A-Z]\|^$/d; s/[* !].*$//' ); do > if [[ "$cur" == "${pval:0:$len}" ]]; then > COMPREPLY[$idx]=$pval >@@ -1126,7 +1126,7 @@ > fi > len=${#cur} > idx=0 >- for pval in $( /usr/sbin/postconf | cut -d ' ' -f 1 ); do >+ for pval in $( /usr/local/sbin/postconf | cut -d ' ' -f 1 ); do > if [[ "$cur" == "${pval:0:$len}" ]]; then > COMPREPLY[$idx]="$pval$eqext" > idx=$(($idx+1)) >@@ -1153,7 +1153,7 @@ > -[dr]) > len=${#cur} > idx=0 >- for pval in $( echo ALL; mailq | \ >+ for pval in $( echo ALL; /usr/local/bin/mailq | \ > sed -e '1d; $d; /^[^0-9A-Z]\|^$/d; s/[* !].*$//' ); do > if [[ "$cur" == "${pval:0:$len}" ]]; then > COMPREPLY[$idx]=$pval >@@ -1165,7 +1165,7 @@ > -h) > len=${#cur} > idx=0 >- for pval in $( echo ALL; mailq | \ >+ for pval in $( echo ALL; /usr/local/bin/mailq | \ > sed -e '1d; $d; /^[^0-9A-Z]\|^$/d; s/[* ].*$//; /!$/d' ); do > if [[ "$cur" == "${pval:0:$len}" ]]; then > COMPREPLY[$idx]=$pval >@@ -1177,7 +1177,7 @@ > -H) > len=${#cur} > idx=0 >- for pval in $( echo ALL; mailq | \ >+ for pval in $( echo ALL; /usr/local/bin/mailq | \ > sed -e '1d; $d; /^[^0-9A-Z]\|^$/d; /^[0-9A-Z]*[* ]/d; s/!.*$//' ); do > if [[ "$cur" == "${pval:0:$len}" ]]; then > COMPREPLY[$idx]=$pval
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 63314
: 40282