<br><br><div class="gmail_quote">On Wed, Mar 27, 2013 at 1:14 AM, Bruno Wolff III <span dir="ltr">&lt;<a href="mailto:bruno@wolff.to" target="_blank">bruno@wolff.to</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5">On Tue, Mar 26, 2013 at 22:23:29 +1100,<br>
  Celik &lt;<a href="mailto:celik.n.00@gmail.com" target="_blank">celik.n.00@gmail.com</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<br>
Had a logic error in my bash script and did &quot;rm -rf *&quot; on my current<br>
working directory. Any tips for undoing such an error?<br>
</blockquote>
<br></div></div>
I&#39;ve done worse. I once did rm -rf .* to try to remove some config files in a home directory. I forgot that .* matched .. and deleted a lot of stuff I didn&#39;t want to.<br>
</blockquote></div><br>Bruno, after such an experience, did you come up with an alternative solution to using &quot;rm -rf&quot;?<br>&quot;rm -i&quot; is good as it prompts before deletion however it becomes tedious if there are a lot of files to be deleted, hence &quot;rm -rf&quot; seems ideal but dangerous if not cautious :(<br>
Had a look on google, there was one particular recommendation that caught me attention (sorry I don&#39;t have the link). It was recommended to mv the files (and/or folders) to be deleted into a tmp directory. I&#39;m planning to try that in my future code, we&#39;ll see how things go.<br>
<br>Regards,<br>C<br>