Unable to extract SO's data dump file by Mac - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T21:41:51Z http://stackoverflow.com/feeds/question/1055165 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1055165/unable-to-extract-sos-data-dump-file-by-mac 1 Unable to extract SO's data dump file by Mac Masi 2009-06-28T16:06:43Z 2009-12-15T16:42:36Z <p>I run the following Gert's <a href="http://serverfault.com/questions/3743/what-useful-things-can-one-add-to-ones-bashrc/3842#3842">extract command</a> to the <a href="http://blog.stackoverflow.com/wp-content/uploads/so-export-2009-06.7z.torrent" rel="nofollow">data dump</a> file which format .7z seems to be a problem:</p> <pre><code>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 } </code></pre> <p>I run it to the dump file. I get</p> <pre><code>extract so-export-2009-06.7z extract:13: command not found: 7z </code></pre> <p>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.</p> <p><strong>How can you unzip SO's data dump?</strong></p> http://stackoverflow.com/questions/1055165/unable-to-extract-sos-data-dump-file-by-mac/1055172#1055172 2 Answer by cobbal for Unable to extract SO's data dump file by Mac cobbal 2009-06-28T16:09:10Z 2009-06-28T16:09:10Z <p><strong>Edit:</strong></p> <p>try using 7za instead of 7z as the executable name, as it appears that is what the port installs</p> <p>so change the line</p> <pre><code>*.7z) 7z x $1 ;; </code></pre> <p>to</p> <pre><code>*.7z) 7za x $1 ;; </code></pre>