diff --git a/CHANGES.txt b/CHANGES.txt index 8ec3187..5a0fe3c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,7 @@ +## Version 3.0.1 du 31/12/2015-12:36 + +56c305a awk ne supporte pas \s + ## Version 3.0.0 du 24/12/2015-15:39 4b1c30b nouvelles fonctions pour le module cgi. cgilsxml, cgiupload et cgiparams sont rassemblés dans le module cgisupport diff --git a/VERSION.txt b/VERSION.txt index 4a36342..cb2b00e 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -3.0.0 +3.0.1 diff --git a/lib/ulib/bash40/bash_completion b/lib/ulib/bash40/bash_completion index 6d81a57..fc0b405 100644 --- a/lib/ulib/bash40/bash_completion +++ b/lib/ulib/bash40/bash_completion @@ -1144,7 +1144,7 @@ _known_hosts_real() if [ ${#kh[@]} -gt 0 ]; then # FS needs to look for a comma separated list COMPREPLY=( "${COMPREPLY[@]}" $( awk 'BEGIN {FS=","} - /^\s*[^|\#]/ {for (i=1; i<=2; ++i) { \ + /^[[:blank:]]*[^|\#]/ {for (i=1; i<=2; ++i) { \ gsub(" .*$", "", $i); \ gsub("[\\[\\]]", "", $i); \ gsub(":[0-9]+$", "", $i); \