I have downloaded log files from a GCP bucket, that I need to parse in a later task. But for now, the files are compressed and are over 40k .gz
files. I tried few commands and none of them worked:
find . -prune -name '*.gz' -exec gunzip {} +
find . -type f -exec gunzip {} +
Any idea how I can unzip that number of files using the cmd, I am using Bash on Mac.