On Sun, 29 Jul 2012, Jason Vas Dias wrote:

Good day Chet, list -
I'm concerned about the difference in output of these functions with
the example input
given on the '$' prefixed line below (with 4.2.29(2)-release
(x86_64-unknown-linux-gnu)):

    function count_args     {                v=($@);  echo ${#v[@]}; }

   Always quote $@. Without quotes, it's the same as $*

function count_args     {                v=( "$@" );  echo ${#v[@]}; }

--
   Chris F.A. Johnson, <http://cfajohnson.com/>
   Author:
   Pro Bash Programming: Scripting the GNU/Linux Shell (2009, Apress)
   Shell Scripting Recipes: A Problem-Solution Approach (2005, Apress)

Reply via email to