Hi Michał, On 2014-08-27 17:06, Michał Górny wrote:
Please review.
+bashcomp_alias() {
+ debug-print-function ${FUNCNAME} "${@}"
+
+ [[ ${#} -lt 2 ]] && die "Usage: ${FUNCNAME} <basename> <alias>..."
+ local base=${1} f
+ shift
+
+ for f; do
is there a missing 'in "$@" after 'for f' ? f is never initialized.
+ dosym "${base}" "$(_bash-completion-r1_get_bashcompdir)/${f}"
+ done
+}
-- Beber
