Generate the statements, then copy them and paste into query window to run them.
select 'grant execute on ' +
QuoteName(specific_schema) + '.' +
QuoteName(specific_name) + ' to someone'
from information_schema.routines
where routine_type='PROCEDURE'
Regards,