Is it possible to gunzip multiple files and concatenate them into one big file, but do it in parallel given a multicore machine? For example, right now I do:
gunzip -c file1.gz > final
gunzip -c file2.gz >> final
gunzip -c file3.gz >> final
gunzip -c file4.gz >> final
Can I do the same so that the gunzip processing of the different files is done in different CPUs in the multicore machine and they are concatenated all into the same final file?