From f0f3c02a3ccde07d3dc79577c7eca41ea3e8e86f Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 2 Apr 2010 11:32:38 +0200 Subject: Replace $var by ${var} --- etc/functions/reload | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'etc/functions/reload') diff --git a/etc/functions/reload b/etc/functions/reload index afa634f..20439c2 100644 --- a/etc/functions/reload +++ b/etc/functions/reload @@ -7,8 +7,8 @@ if [[ ${#*} == 0 ]] { rehash } else { local function - for function in $@; { - unfunction $function - autoload $function + for function in ${@}; { + unfunction ${function} + autoload ${function} } } -- cgit v1.2.3