Linux command line unzip multiple files

Problem

You have a folder with many gzipped files that you want to unzip at the same time.

Solutionls -al | grep gz | awk ‘{ print $9}’ | xargs gunzip