How do I extract files without folder structure using tar

为君一笑 提交于 2019-12-20 08:47:00

问题


I have a tar.gz-file with the following structure:

folder1/img.gif
folder2/img2.gif
folder3/img3.gif

I want to extract the image files without the folder hierarchy so the extracted result looks like:

/img.gif
/img2.gif
/img3.gif

I need to do this with a combination of Unix and PHP. Here is what I have so far, it works to extract them to the specified directory but keeps the folder hierarchy:

exec('gtar --keep-newer-files -xzf images.tgz -C /home/user/public_html/images/',$ret);

回答1:


You can use the --strip-components option of tar.

 --strip-components count
         (x mode only) Remove the specified number of leading path ele-
         ments.  Pathnames with fewer elements will be silently skipped.
         Note that the pathname is edited after checking inclusion/exclu-
         sion patterns but before security checks.

I create a tar file with a similar structure to yours:

$tar -tf tarfolder.tar
tarfolder/
tarfolder/file.a
tarfolder/file.b

$ls -la file.*
ls: file.*: No such file or directory

Then extracted by doing:

$tar -xf tarfolder.tar --strip-components 1
$ls -la file.*
-rw-r--r--  1 ericgorr  wheel  0 Jan 12 12:33 file.a
-rw-r--r--  1 ericgorr  wheel  0 Jan 12 12:33 file.b



回答2:


This is almost possible with tar alone, using the --transform flag, except that there's no way to delete the left over directories as far as I can tell.

This will flatten the entire archive:

tar xzf images.tgz --transform='s/.*\///'

The output will be

folder1/
folder2/
folder3/
img.gif
img2.gif
img3.gif

You will then need to delete the directories with another command, unfortunately.




回答3:


Check the tar version e.g.

$ tar --version

If version is >= than tar-1.14.90 use --strip-components

tar xvzf web.dirs.tar.gz -C /srv/www --strip-components 2

else use --strip-path

tar xvzf web.dirs.tar.gz -C /srv/www --strip-path 2



回答4:


Based on @ford's answer. This one will extract it to the my_dirname folder. So that we can properly clear the empty folders without affected currently existing files.

tar xzf images.tgz --transform='s/.*\///' -C my_dirname
find my_dirname -type d -empty -delete



回答5:


Find img*.gif in any sub folder of mytar.tar.gz and extract to ./

tar -zxf mytar.tar.gz --absolute-names --no-anchored img*.gif --transform='s:.*/::'

Find img*.gif in any of the 3 folders listed in this specific question in mytar.tar.gz and extract to ./

tar -zxf mytar.tar.gz --absolute-names --no-anchored img*.gif --transform='s:^folder[1-3]/::'



来源:https://stackoverflow.com/questions/14295771/how-do-i-extract-files-without-folder-structure-using-tar

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!