Im fairly new to bash scripting and i've been searching here in stackoverflow for an answer that will match what im looking for but cant find an exact match.. apologies if this has already been answered.
I have multiple folders that has multiple compressed files, some are gzip extension , some doesnt have extension.
The only way Ive been able to see the content of the compressed file is by doing
zcat filename.gzip > filename
My goal is to create a for loop that will :
- zcat all files and output it to a new file & add an identifier at the end, something like "-read"
- delete the compressed file
Thank you!
To decompress all files that
gzip
would handle usingfind
,basename
and awhile
loop:This should also handle any weird quoting that comes up. The
while
loop will run in a subshell, andset -e
will set the stop on error option in it so that if there's an error with either thezcat
or therm
it won't keep plowing ahead destroying everything in sight.