Call Multiple Scripts With Similar Name

I have a lot of scripts in one directory
I was just wondering if there was a single command that could call each script.

Example:
There are scripts, "stopThisService.sh", "stopThatService.sh", "stopAnotherService.sh", and "stopYetAnotherService.sh".

I'd like to be able to call them all by saying something like:

./stop*.sh

Anyone know of a concrete way of making all these calls without tossing them into another shell script?

Thanks.

A possible solution:

echo ./stop*.sh |xargs -n1 sh

Jean-Pierre.