O seguinte irá funcionar, mas provavelmente tem algumas implicações negativas de segurança:
echo "You have" * "in current folder"
IMO uma maneira melhor, mas exigindo duas linhas seria:
files=(*)
echo "You have ${files[@]} in curent folder"
com printf:
files=(*)
printf '%s ' "You have ${files[@]} in current folder"