Makes 7-Zip to use stdout (standard output stream).
-so
7z x archive.gz -so > Doc.txt
decompresses archive.gz archive to output stream and writes that stream to Doc.txt file.
7z a dummy -tgzip -so Doc.txt > archive.gz
compresses Doc.txt file to output stream and writes that stream to archive.gz file.
a (Add), e (Extract), u (Update), x (Extract with full paths)