我想从tar.gz中的一个目录中提取几个文件。问题是,在我找到很多文件的位置,解压整个文件夹的过程效率低下。我尝试单独提取它们,但在提取特定文件之前,它会扫描整个包。有没有办法跳过扫描并直接提取?
用于逐个提取单个文件的脚本:
filesList=( "file1" "file2" "file3" )
filesPath="path/to/files/inside/targz/"
for i in "${filesList[@]}"
do
tar -xvf compressed.tar.gz $filesPath$i
done
答案 0 :(得分:0)
要从tar中提取特定文件,您可以使用:
tar -zxvf <tar_name> <file_to_untar>
答案 1 :(得分:0)
不确定取消扫描什么是扫描(可能在脚本的另一部分)。可以避免for循环并调用tar一次。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID"
version="2.5">
<display-name>EVATS</display-name>
<listener>
<listener-
class>org.apache.struts2.tiles.StrutsTilesListener</listener-
class>
</listener>
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter
</filter-class>
<init-param>
<param-name>struts.action.extension</param-name>
<param-value>,</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<session-config>
<session-timeout>15</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
或首先处理列表
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="false" />
<constant name="struts.enable.DynamicMethodInvocation" value="false" />
<constant name="struts.custom.i18n.resources" value="global" />
<constant name="struts.locale" value="en" />
<include file="main-default.xml" />
</struts>
我刚刚看到它是一个tar.gz,在循环中膨胀(tar -xvf compressed.tar.gz "${filesList[@]/#/$filesPath}"
或filesList=( "file1" "file2" "file3" )
filesPath="path/to/files/inside/targz/"
filesPathList=()
for i in "${filesList[@]}"
do
filesPathList+=("$filesPath$i")
done
tar -xvf compressed.tar.gz "${filesPathList[@]}"
)。这解释了性能不佳,另一种选择可以先用枪口。