某个脚本中的函数不是很了解

某个脚本中的函数不是很理解execute (){$* /dev/nullif [ $? -ne 0 ] thenechoecho ERROR: executing $

某个脚本中的函数不是很理解
execute ()
{
    $* >/dev/null
    if [ $? -ne 0 ]; then
        echo
        echo "ERROR: executing $*"
        echo
        exit 1
    fi
}
然后执行
里面有
execute "make depmod_install"
execute "cp Rules.make.sdbak Rules.make"

为何这个“”里面的内容会被执行,请指教

[解决办法]
$*换为参数后:make depmod_install >/dev/null,所以就执行了