Quote:
when i use parametrized functions ... line $zzz(aaa,bbb)
I must echo them ... otherwise an error appears ...
using .echo $func() in the upper script doesn't help ... an error continued to occure ... what to do ? smile


for you just dont return anything

Code:
alias blah { 
  .... code here ....
  return
}

alias glob {
  echo glob
  $blah($1,2,3,4)
  echo goes
  $blah($1,2,3,4)
  echo blob
}



If u want to return something then use this
!.echo -q $blah(x,y,z)

! to ensure its really echo
. to make its output quite
-q dont display any output if its quite
The functions are still carried out, just not echoed.