# list_append list_name item ... - append items to a list list_append() { _list_a_name=$1; shift eval "set -- \${$_list_a_name} \$*" eval "$_list_a_name=\$*" }