Calling a cookbook with a particular recipe(s) in mind

chef-client -z --runlist "cookbook::recipe"
Apply multiple recipes:
chef-client -z --runlist "recipe[cookbook::recipe1],recipe[cookbook:recipe2]"
alternative to --runlist is -r

Practical example:
sudo chef-client -z -r "recipe[workstation::setup],recipe[apache::server]"