Comment exécuter une commande dans une autre commande Bash

cmd1 "$(cmd2)"

eg1:
echo "Files in a folrer: "$(ls -l | wc -l)""
Lazy Lizard