close
Unzipping
to uncompress the file foo.tar.gz you could use one of the following commands:
gunzip -c foo.tar.gz | tar xvf -
or alternatively:
gunzip < foo.tar.gz | tar xvf -
Zipping
tar cvf - foodir | gzip > foo.tar.gz
全站熱搜
留言列表