Solved Installing multiple packages at a time

Hello,

How do I install multiple packages all at a time of the same type? For example, I want to install all the php70 extensions together. How can I do this without typing them separately. I can remove them using

Code:
sudo pkg remove php70-*

Is there a similar process for installing?

Thanks in advance!
 
You can't use wildcards if that's what you're asking. But it does allow you to provide multiple packages:
pkg install package1 package2 package3
 
Back
Top