Skip to content

Instantly share code, notes, and snippets.

@hgascon
Created June 11, 2015 14:29
Show Gist options
  • Save hgascon/fbcfe175a3110b2dc6a8 to your computer and use it in GitHub Desktop.
Save hgascon/fbcfe175a3110b2dc6a8 to your computer and use it in GitHub Desktop.
Decompress a gzip file without gz extension
gzip -d "" -f gzippe_file
#For several files under several directories
for item in $(ls -d -1 $PWD/**/*); do
echo $item; zcat $item > temp;
sed -i 's/, / /g' temp;
gzip temp;
mv temp.gz $item;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment