<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[linux entpacken]]></title><description><![CDATA[<p>wie kann ich in einem Ordner der fast nur zips enthält anweisen, dass alle zips in einen neuen Unterordner entpackt werden sollen?</p>
<p>also irgend eine for schleife schätze ich wird nötig sein, oder?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/250938/linux-entpacken</link><generator>RSS for Node</generator><lastBuildDate>Mon, 20 Apr 2026 07:18:35 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/250938.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 26 Sep 2009 18:54:22 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to linux entpacken on Sat, 26 Sep 2009 18:54:22 GMT]]></title><description><![CDATA[<p>wie kann ich in einem Ordner der fast nur zips enthält anweisen, dass alle zips in einen neuen Unterordner entpackt werden sollen?</p>
<p>also irgend eine for schleife schätze ich wird nötig sein, oder?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1784697</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1784697</guid><dc:creator><![CDATA[shisha]]></dc:creator><pubDate>Sat, 26 Sep 2009 18:54:22 GMT</pubDate></item><item><title><![CDATA[Reply to linux entpacken on Sat, 26 Sep 2009 18:59:09 GMT]]></title><description><![CDATA[<p>nix schleife. Installier dir einfach das tool &quot;unp&quot; (sudo apt-get install unp), geh in den ordner und gib ein:</p>
<pre><code>unp *.zip
</code></pre>
<p>Damit entpackst du zumindest mal allezips. ob man die in ein bestimmtest unterverzeichnis leiten kann, dazu solltest du dir vllt die manpage anschauen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1784699</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1784699</guid><dc:creator><![CDATA[fghfghggg]]></dc:creator><pubDate>Sat, 26 Sep 2009 18:59:09 GMT</pubDate></item><item><title><![CDATA[Reply to linux entpacken on Sun, 27 Sep 2009 04:54:37 GMT]]></title><description><![CDATA[<p>Ich haette das mit find gemacht</p>
<pre><code>$ find . -name &quot;*.zip&quot; | xargs unzip
</code></pre>
<p>Oder auch mit einer Schleife, die fuer jede zip Datei ein eigenes Unterverzeichnis erstellt.</p>
<pre><code>find . -name &quot;*.zip&quot; -print0 | while read -d $'\0' file; do \
mkdir &quot;$file&quot;; \
cd &quot;$file&quot;; \
unzip &quot;../$file&quot;; \
cd ..; \
done
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1784781</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1784781</guid><dc:creator><![CDATA[DEvent]]></dc:creator><pubDate>Sun, 27 Sep 2009 04:54:37 GMT</pubDate></item><item><title><![CDATA[Reply to linux entpacken on Mon, 28 Sep 2009 09:05:21 GMT]]></title><description><![CDATA[<p>ganz einfach<br />
<code>unzip '*.zip' -d unterverzeichnis</code></p>
<p><a href="http://man.cx/unzip" rel="nofollow">man: unzip</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1785235</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1785235</guid><dc:creator><![CDATA[rüdiger]]></dc:creator><pubDate>Mon, 28 Sep 2009 09:05:21 GMT</pubDate></item></channel></rss>