<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.slacky.eu/wikislack/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="it">
		<id>http://www.slacky.eu/wikislack/index.php?title=Cerca&amp;feed=atom&amp;action=history</id>
		<title>Cerca - Cronologia</title>
		<link rel="self" type="application/atom+xml" href="http://www.slacky.eu/wikislack/index.php?title=Cerca&amp;feed=atom&amp;action=history"/>
		<link rel="alternate" type="text/html" href="http://www.slacky.eu/wikislack/index.php?title=Cerca&amp;action=history"/>
		<updated>2013-05-19T23:41:08Z</updated>
		<subtitle>Cronologia della pagina su questo sito</subtitle>
		<generator>MediaWiki 1.20.3</generator>

	<entry>
		<id>http://www.slacky.eu/wikislack/index.php?title=Cerca&amp;diff=2476&amp;oldid=prev</id>
		<title>L1q1d il 10:21, 12 set 2006</title>
		<link rel="alternate" type="text/html" href="http://www.slacky.eu/wikislack/index.php?title=Cerca&amp;diff=2476&amp;oldid=prev"/>
				<updated>2006-09-12T10:21:23Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class='diff diff-contentalign-left'&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
				&lt;col class='diff-marker' /&gt;
				&lt;col class='diff-content' /&gt;
			&lt;tr style='vertical-align: top;'&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;← Versione meno recente&lt;/td&gt;
			&lt;td colspan='2' style=&quot;background-color: white; color:black;&quot;&gt;Versione delle 10:21, 12 set 2006&lt;/td&gt;
			&lt;/tr&gt;&lt;tr&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Riga 1:&lt;/td&gt;
  &lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Riga 1:&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td colspan=&quot;2&quot;&gt;&amp;nbsp;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt;+&lt;/td&gt;
  &lt;td style=&quot;background: #cfc; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;[[Category:Script]]&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;= Descrizione =&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;= Descrizione =&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
  &lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Semplice script che vi segue nella procedura di ricerca.&lt;/div&gt;&lt;/td&gt;
  &lt;td class=&quot;diff-marker&quot;&gt; &lt;/td&gt;
  &lt;td style=&quot;background: #eee; color:black; font-size: smaller;&quot;&gt;&lt;div&gt;Semplice script che vi segue nella procedura di ricerca.&lt;/div&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>L1q1d</name></author>	</entry>

	<entry>
		<id>http://www.slacky.eu/wikislack/index.php?title=Cerca&amp;diff=2440&amp;oldid=prev</id>
		<title>L1q1d il 09:43, 12 set 2006</title>
		<link rel="alternate" type="text/html" href="http://www.slacky.eu/wikislack/index.php?title=Cerca&amp;diff=2440&amp;oldid=prev"/>
				<updated>2006-09-12T09:43:59Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Nuova pagina&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= Descrizione =&lt;br /&gt;
Semplice script che vi segue nella procedura di ricerca.&lt;br /&gt;
= Script =&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
&lt;br /&gt;
echo &amp;quot;Directory da cui iniziare la ricerca (es.: /home/..../)? &amp;quot;&lt;br /&gt;
echo &amp;quot;0: qui, nella dir. corrente&amp;quot;&lt;br /&gt;
echo &amp;quot;1: altrove, in un'altra dir.&amp;quot;&lt;br /&gt;
read -r r1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
case $r1 in&lt;br /&gt;
0) echo &amp;quot;Cosa devo cercare? &amp;quot;&lt;br /&gt;
   read -r r3&lt;br /&gt;
   find . -iname $r3&lt;br /&gt;
   ;;&lt;br /&gt;
1) echo &amp;quot;In quale dir. (/, /home/.../)? &amp;quot;&lt;br /&gt;
   read -r r2&lt;br /&gt;
   cd $r2&lt;br /&gt;
   echo &amp;quot;Cosa devo cercare? &amp;quot;&lt;br /&gt;
   read -r r3&lt;br /&gt;
   find $r2 -iname $r3&lt;br /&gt;
   ;;&lt;br /&gt;
*) echo &amp;quot;?!&amp;quot;&lt;br /&gt;
   ;;&lt;br /&gt;
esac&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
* Data:    	03 Jun 2006&lt;br /&gt;
* Autore:    	Paolo&lt;br /&gt;
* Versione:    	1.0&lt;/div&gt;</summary>
		<author><name>L1q1d</name></author>	</entry>

	</feed>