unzip multiple files
To do so, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:
unzip '*.zip'
Also you can right click on the first file in the group, and choose Extract here, and that will also all the files in that group.
To unzip multiple files using a loop -
for z in *.zip; do unzip "$z"; done