Re: [Shunit2-users] shunit2-2.0.3.tgz format [SEC=UNCLASSIFIED]
Brought to you by:
sfsetse
From: <bo...@pr...> - 2007-08-21 10:00:41
|
Malcolm Gorman wrote: > I tried to gunzip shunit2-2.0.3.tgz without success, on a unix system. This works fine for me. Could you show us the error message that you received? I believe that it should work for you as well. tar tvzf shunit2-2.0.3.tgz tar xvzf shunit2-2.0.3.tgz Or more verbosely: gzip -d < shunit2-2.0.3.tgz | tar tvf - gzip -d < shunit2-2.0.3.tgz | tar xvf - Or even more verbosely using explicit files. This is not preferred because it uncompresses the original file but is illustrative of the component parts of the process. gzip -d shunit2-2.0.3.tgz tar tvf shunit2-2.0.3.tar tar xvf shunit2-2.0.3.tar What error message are you seeing from any of the above cases? Bob |