由於win使用的是gbk編碼,在win下打包zip的壓縮檔案在ubuntu下使用unzip解壓會出現亂碼的問題。
解決方案:
換軟體,不用unzip,使用unar
18.04是預設安裝的,如果沒有預設安裝可以使用
sudo apt-get install unar
這個命令安裝。
1.列出壓縮包的內容
lsar test.zip
2.解壓
unar test.zip
3.常用選項
-o解釋:指定解壓結果儲存的位置
unar test.
zip -o /home/dir/
-e解釋:指定編碼
unar -e gbk test.zip
-p解釋:指定解壓密碼
unar -p 123456 test.zip
解壓unzip用法
1 把檔案解壓到當前目錄下 unzip test.zip2 如果要把檔案解壓到指定的目錄下,需要用到 d引數。unzip d temp test.zip3 解壓的時候,有時候不想覆蓋已經存在的檔案,那麼可以加上 n引數 unzip n test.zip unzip n d temp test.zip...
解壓unzip用法
1 把檔案解壓到當前目錄下 unzip test.zip2 如果要把檔案解壓到指定的目錄下,需要用到 d引數。unzip d temp test.zip3 解壓的時候,有時候不想覆蓋已經存在的檔案,那麼可以加上 n引數 unzip n test.zip unzip n d temp test.zip...
解壓unzip用法
1 把檔案解壓到當前目錄下 unzip test.zip2 如果要把檔案解壓到指定的目錄下,需要用到 d引數。unzip d temp test.zip3 解壓的時候,有時候不想覆蓋已經存在的檔案,那麼可以加上 n引數 unzip n test.zip unzip n d temp test.zip...