Re: Replacement for unzip of .7z compressed files.
- Reply: Ernie Luzar : "Re: Replacement for unzip of .7z compressed files."
- In reply to: Ernie Luzar : "Re: Replacement for unzip of .7z compressed files."
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 21 Mar 2022 20:56:33 UTC
On Mon, 21 Mar 2022 16:45:14 -0400 Ernie Luzar <luzar722@gmail.com> wrote: > Problem is how do I get the extracted file into a different directory? > I have a directory named DL with 5 different named .7z files and want to > have the unzipped version go to another directory named UZ with the 5 > .7z files having the same file names minus the .7z extension. tar xv -C /destination/directory -f archive.7z In extract mode -C changes directory after opening the archive. -- Steve O'Hara-Smith <steve@sohara.org>