<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title></title>
<style type="text/css">
<!--
body{margin-left:10px;margin-right:10px;margin-top:10px;margin-bottom:10px;}
-->
</style>
</head>
<body marginleft="10" marginright="10" margintop="10" marginbottom="10">
<font face="Lucida Grande" size="+0" color="#000000" style="font-family:Lucida Grande;font-size:10pt;color:#000000;"><b>BSD Users Sweden &lt;<a href="mailto:bus@stacken.kth.se">bus@stacken.kth.se</a>&gt; on onsdag 20 juni 2007 at 11.15 +0100 wrote:<br />
</b></font><span style="background-color:#d0d0d0;"><font face="Geneva" size="-1" color="#000000" style="font-family:Geneva;font-size:9pt;color:#000000;">Hej alla!<br />
<br />
Jag f&#246;rs&#246;ker g&#246;ra ett enkelt sh script som ska leta reda p&#229; filer och om<br />
det inte finns en specifik rad i filen ska den l&#228;ggas till...!<br />
<br />
Mitt problem &#228;r att filen ligger i mappar som har &quot;mellanslag&quot; i<br />
s&#246;kv&#228;gen vilket inte blir s&#229; bra i mitt script!<br />
</font></span><font face="Geneva" size="+0" color="#000000" style="font-family:Geneva;font-size:10pt;color:#000000;"><br />
$ cat &gt; /tmp/fixa.sh<br />
#!/bin/sh<br />
grep -q &quot;lagad&quot; &quot;$1&quot; || (<br />
&nbsp;&nbsp;echo &quot;lagad&quot; &gt;&gt; &quot;$1&quot;<br />
&nbsp;&nbsp;echo &quot;Lagade $1 :)&quot;<br />
)<br />
^D<br />
$ chmod +x /tmp/fixa.sh<br />
$ find /home -type f -name prefs.js -exec /tmp/fixa.sh {} \;<br />
<br />
</font><span style="background-color:#d0d0d0;"><font face="Geneva" size="-1" color="#000000" style="font-family:Geneva;font-size:9pt;color:#000000;"><br />
</font></span><font face="Geneva" size="+0" color="#000000" style="font-family:Geneva;font-size:10pt;color:#000000;">//noah</font>
</body>
</html>