无法通过Mac提取SO的数据转储文件

时间:2021-11-12 01:41:33

I run the following Gert's extract command to the data dump file which format .7z seems to be a problem:

我运行以下Gert的extract命令到数据转储文件格式.7z似乎是一个问题:

extract () {
   if [ -f $1 ] ; then
       case $1 in
           *.tar.bz2)   tar xvjf $1    ;;
           *.tar.gz)    tar xvzf $1    ;;
           *.bz2)       bunzip2 $1     ;;
           *.rar)       unrar x $1       ;;
           *.gz)        gunzip $1      ;;
           *.tar)       tar xvf $1     ;;
           *.tbz2)      tar xvjf $1    ;;
           *.tgz)       tar xvzf $1    ;;
           *.zip)       unzip $1       ;;
           *.Z)         uncompress $1  ;;
           *.7z)        7z x $1        ;;
           *)           echo "don't know how to extract '$1'..." ;;
       esac
   else
       echo "'$1' is not a valid file!"
   fi
 }

I run it to the dump file. I get

我将它运行到转储文件。我明白了

extract so-export-2009-06.7z       
extract:13: command not found: 7z

This suggested that I do not have 7z to extract files. I installed the app p7zip by MacPorts unsuccessfully. It did not start to act as 7z unzipper.

这表明我没有7z来提取文件。我安装了MacPorts的app p7zip失败了。它没有开始充当7z unzipper。

How can you unzip SO's data dump?

你如何解压SO的数据转储?

1 个解决方案

#1


Edit:

try using 7za instead of 7z as the executable name, as it appears that is what the port installs

尝试使用7za而不是7z作为可执行文件名,因为它似乎是端口安装的

so change the line

所以换行

*.7z)        7z x $1        ;;

to

*.7z)        7za x $1        ;;

#1


Edit:

try using 7za instead of 7z as the executable name, as it appears that is what the port installs

尝试使用7za而不是7z作为可执行文件名,因为它似乎是端口安装的

so change the line

所以换行

*.7z)        7z x $1        ;;

to

*.7z)        7za x $1        ;;