How to Gunzip<br>1) Create dirs: target and subdir: /target/source<br>2) Place all .gz files in subdir: /target/source<br>3) From target dir command line, run:<br>   gunzip -r source  ;note that the generated files at this stage are still not readable.<br>
4) Then run: zcat -r source &gt; new.txt  ;the file new.txt will be readable.<br><br>This two-step process is still not ideal to my way of thinking.  I&#39;d prefer:<br>- a one-step process.<br>- for the process to generate a series of text files, each corresponding to a series of .gz files.<br>
(At least the above process does not require issuing a gunzip command for each uniquely named .gz source file.)<br>