大きなタールボールからディレクトリを抽出する

大きなタールボールからディレクトリを抽出する

パスがわからないディレクトリを解凍するにはどうすればよいですか?私はディレクトリ名だけを知っています。

ワイルドカードを使用して単一ファイルを解凍する方法を知っています。tar -xf somefile.tar.gz --wildcards --no-anchored 'index.php'

答え1

二度だけお届けします。

$ tar -tf somefile.tar.gz | grep dir-i-am-looking-for | head -1
./foo/bar/dir-i-am-looking-for/somefile/bla/bla/bla
$ tar -xf somefile.tar.gz ./foo/bar/dir-i-am-looking-for

GNU tarには「ワイルドカードを含める」オプションは表示されません。

答え2

それを使用する1つの方法perl

コンテンツscript.pl:

use warnings;
use strict;
use Archive::Tar;

## Check input arguments.
die qq[perl $0 <tar-file> <directory>\n] unless @ARGV == 2;

my $found_dir;

## Create a Tar object.
my $tar = Archive::Tar->new( shift );

## Get directory to search in the Tar object.
my $dir = quotemeta shift;

for ( $tar->get_files ) { 

    ## Set flag and extract when last entry of the path is a directory with same 
    ## name given as argument
    if ( ! $found_dir &&  $_->is_dir && $_->full_path =~ m|(?i:$dir)/\Z|o ) { 
        $found_dir = 1;
        $tar->extract( $_ );
        next;
    }   

    ## When set flag (directory already found previously), extract all files after
    ## it in the path.
    if ( $found_dir && $_->full_path =~ m|/(?i:$dir)/.*|o ) { 
        $tar->extract( $_ );
    }   
}

2つのパラメータを受け入れます。 1つ目はTARファイル、2つ目は抽出するディレクトリです。次のように実行します。

perl script.pl test.tar winbuild

関連情報