|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
simple command to combine gzip and tar:
to tar and gzip a dir(for example testdir):
tar -cvz testdir >> testdir.tgz
to uncompress it
tar -xzf testdir.tgz
you can also do it in two steps:
gunzip testdir.tgz ==> get testdir.tar
tar -xvf testdir.tar |
|