node.js - tar.lz文件怎么解压
阿神
阿神 2017-04-17 14:27:22
0
3
605

怎么解压tar.lz,好长时间了,哪位大神知道?

阿神
阿神

闭关修行中......

reply all(3)
迷茫

Try this?

targz().extract('/bkp/backup.tar.gz', '/home/myuser', function(err){
  if(err)
    console.log('Something is wrong ', err.stack);

  console.log('Job done!');
});

Watch tar.gz

左手右手慢动作

7-zip seems to work

阿神

Use lzip to decompress under Linux, lzip -d file.lz. . Essentially, it is a compressed file. You should use common decompression software under Windows to decompress it.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template