Extract all .gz in a directory- Linux
Next command helps to do that:
find . -name '*.gz' -exec gunzip '{}' \;
Note: source .gz files will be replaced by new extracted ones.
Scientific Algorithms and Analytics
Next command helps to do that:
find . -name '*.gz' -exec gunzip '{}' \;
Note: source .gz files will be replaced by new extracted ones.