<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://forum.ubuntu-fr.org/extern.php?action=feed&amp;tid=1056011&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Forum Ubuntu-fr.org / find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
		<link>http://forum.ubuntu-fr.org/viewtopic.php?id=1056011</link>
		<description><![CDATA[Les sujets les plus récents dans find : rechercher deux chaines de charactère en une commande. [RÉSOLU].]]></description>
		<lastBuildDate>Tue, 02 Oct 2012 21:50:44 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Réponse à&#160;:  find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=10982761#p10982761</link>
			<description><![CDATA[<p>Merci nesthib, j&#039;avais un peu de mal avec -regex. <img src="http://forum.ubuntu-fr.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></description>
			<author><![CDATA[dummy@example.com (nathéo)]]></author>
			<pubDate>Tue, 02 Oct 2012 21:50:44 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=10982761#p10982761</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=10979741#p10979741</link>
			<description><![CDATA[<p>sinon, une alternative :</p><div class="codebox"><pre><code>find /rep -regex &#039;.*\(chaine1\|chaine2\).*&#039; -type f -delete</code></pre></div><p>utilise iname ou iregex pour ne pas prendre en compte la casse<br />(NB. attention avec une expression rationnelle tu dois prendre en compte le chemin complet, d&#039;où les .* de part et d&#039;autre)</p><p>NB². si c&#039;est résolu → [résolu]</p>]]></description>
			<author><![CDATA[dummy@example.com (nesthib)]]></author>
			<pubDate>Tue, 02 Oct 2012 18:21:29 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=10979741#p10979741</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=10977651#p10977651</link>
			<description><![CDATA[<p>Ok, merci beaucoup de la réponse, ça fonctionne. <img src="http://forum.ubuntu-fr.org/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (nathéo)]]></author>
			<pubDate>Tue, 02 Oct 2012 15:22:54 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=10977651#p10977651</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=10977211#p10977211</link>
			<description><![CDATA[<p>Salut,</p><div class="codebox"><pre><code>find repertoire \( -name &#039;*.txt&#039; -o -name &#039;*.mp3&#039; \) -type f -delete</code></pre></div><p>Ça supprimera tous les fichiers *.txt et tous les fichiers *.mp3 dans repertoire (ainsi que ses sous-répertoires).<br />Remplace -delete par -print histoire d&#039;être sur de ne pas faire de bêtises !</p>]]></description>
			<author><![CDATA[dummy@example.com (Postmortem)]]></author>
			<pubDate>Tue, 02 Oct 2012 14:47:47 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=10977211#p10977211</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976981#p10976981</link>
			<description><![CDATA[<p>Je voudrais faire en sortes que les deux soient recherchés, pour y appliquer &quot;-delete&quot;.</p>]]></description>
			<author><![CDATA[dummy@example.com (nathéo)]]></author>
			<pubDate>Tue, 02 Oct 2012 14:26:20 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976981#p10976981</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976781#p10976781</link>
			<description><![CDATA[<p>Quelle logique souhaites-tu appliquer : et, ou inclusif, ou exclusif ?</p>]]></description>
			<author><![CDATA[dummy@example.com (arnaud_d)]]></author>
			<pubDate>Tue, 02 Oct 2012 14:04:28 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976781#p10976781</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976551#p10976551</link>
			<description><![CDATA[<p>Je cherche a exécuter une commande avec deux chaines de caractère, donc dans mon esprit ça ressemble un peu à ça </p><div class="codebox"><pre><code>find -name &quot;*~&quot; &quot;#*#&quot; </code></pre></div><p>Hélas ça ne fonctionne pas vraiment... J&#039;ai déjà cherché plusieurs heures dans le manuel, mais il faut avouer que ce n&#039;est pas ce qu&#039;il y a de plus lisible (enfin à mon goût).</p>]]></description>
			<author><![CDATA[dummy@example.com (nathéo)]]></author>
			<pubDate>Tue, 02 Oct 2012 13:43:58 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976551#p10976551</guid>
		</item>
		<item>
			<title><![CDATA[Réponse à&#160;:  find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976461#p10976461</link>
			<description><![CDATA[<p>non, parce que c&#039;est un peu court quand même.</p><p>on veut bien quelques exemples!</p>]]></description>
			<author><![CDATA[dummy@example.com (Watael)]]></author>
			<pubDate>Tue, 02 Oct 2012 13:36:36 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976461#p10976461</guid>
		</item>
		<item>
			<title><![CDATA[find : rechercher deux chaines de charactère en une commande. [RÉSOLU]]]></title>
			<link>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976241#p10976241</link>
			<description><![CDATA[<p>Bonjour,</p><p>Tout es dans le titre, des gens pour m&#039;aider ? <img src="http://forum.ubuntu-fr.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></description>
			<author><![CDATA[dummy@example.com (nathéo)]]></author>
			<pubDate>Tue, 02 Oct 2012 13:28:25 +0000</pubDate>
			<guid>http://forum.ubuntu-fr.org/viewtopic.php?pid=10976241#p10976241</guid>
		</item>
	</channel>
</rss>
