Common compression format (to be continued)

One, Windows

1.rar

2.zip

3.7z

 

Second, Linux

1.tar

Compression: tar -zcvf x.tar.gz path

Unzip: tar -zxvf x.tar.gz 

2.zip

unzip x.zip

unzip -O cp936 x.zip Solve the problem of garbled characters in the Chinese path or file name of Linux decompression caused by Windows default GBK zip compression

Guess you like

Origin blog.csdn.net/zhu6201976/article/details/111167432