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
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