<p>Hrm. Except that I strongly dislike git, and thus use the (in this case) GNU&#39;s DVCS, bzr.  ;-)</p>
<p>--<br>
Sent from my phone... a G2 running CM7 nightlies!</p>
<div class="gmail_quote">On Mar 20, 2011 11:54 PM, &quot;Richard Bronosky&quot; &lt;<a href="mailto:Richard@bronosky.com">Richard@bronosky.com</a>&gt; wrote:<br type="attribution">&gt; For this kind of thing, you really ought to be using github. Even if you<br>
&gt; never host a full open source project, for something like this you post a<br>&gt; &quot;gist&quot;. For example, here is one of mine:<br>&gt; <a href="https://gist.github.com/806251That">https://gist.github.com/806251That</a> will open you up to an entire<br>
&gt; community of people who can &quot;fork&quot; your<br>&gt; scripts and post their changes. I often use it for oneliners that I want to<br>&gt; keep handy, like my evil: <a href="https://gist.github.com/422582">https://gist.github.com/422582</a> But I also use it<br>
&gt; to host things as simple as a single line of code that I often want to<br>&gt; reuse, like: <a href="https://gist.github.com/570492">https://gist.github.com/570492</a><br>&gt; <br>&gt; Do that enough and you will eventually have so many code patterns in your<br>
&gt; toolkit that you can make an open source repo out of them, like:<br>&gt; <a href="https://github.com/RichardBronosky/tools/tree/master/bash.patterns">https://github.com/RichardBronosky/tools/tree/master/bash.patterns</a><br>
&gt; <br>&gt; The point is this: If you write code, any code, you should be on github.<br>&gt; <br>&gt; On Sun, Mar 20, 2011 at 11:04 AM, Ron Frazier &lt;<a href="mailto:atllinuxenthinfo@c3energy.com">atllinuxenthinfo@c3energy.com</a><br>
&gt;&gt; wrote:<br>&gt; <br>&gt;&gt; Hello all,<br>&gt;&gt;<br>&gt;&gt; I&#39;ve written my first Linux shell script as follows and saved it on the<br>&gt;&gt; Desktop under the name Check Big Files and given it execute permission.<br>
&gt;&gt; I double click on it, the system asks whether to display or run it, and<br>&gt;&gt; I say run.<br>&gt;&gt;<br>&gt;&gt; echo &quot;Files larger than 100 MB starting from /.&quot; &gt; file_list.txt<br>&gt;&gt; echo &quot;Excluding /swapfile, /sys/devices, and /proc.&quot; &gt;&gt; file_list.txt<br>
&gt;&gt; echo -n &quot;Computer name: &quot; &gt;&gt; file_list.txt<br>&gt;&gt; uname -n &gt;&gt; file_list.txt<br>&gt;&gt; echo &quot; &quot; &gt;&gt; file_list.txt<br>&gt;&gt; date &gt;&gt; file_list.txt<br>&gt;&gt; echo &quot; &quot; &gt;&gt; file_list.txt<br>
&gt;&gt; find / -type f -size +100M | grep -v /swapfile | grep -v /sys/devices |<br>&gt;&gt; grep -v /proc &gt;&gt; file_list.txt<br>&gt;&gt; echo &quot; &quot; &gt;&gt; file_list.txt<br>&gt;&gt; date &gt;&gt; file_list.txt<br>
&gt;&gt; gedit file_list.txt<br>&gt;&gt;<br>&gt;&gt; It works very nicely, and give&#39;s me an instant report on large files in<br>&gt;&gt; my system.  You guys can tell me if you think anything needs changing to<br>&gt;&gt; improve it.  Anyone is welcome to use the script for their own<br>
&gt;&gt; purposes.  If you publish it somewhere, give me the credit.  Here&#39;s what<br>&gt;&gt; it does.<br>&gt;&gt;<br>&gt;&gt; 1) Delete file_list.txt if it exists.<br>&gt;&gt; 2) Create file_list.txt and put some headers, the computer name, and the<br>
&gt;&gt; date in it.<br>&gt;&gt; 3) Find all files &gt; 100 MB in size starting from / and list them in the<br>&gt;&gt; text file, while excluding /swapfile, /sys/devices, and /proc.<br>&gt;&gt; 4) Append the date to the end of the file.<br>
&gt;&gt; 5) Display the text file.<br>&gt;&gt;<br>&gt;&gt; I have a question.  How would I force it to execute immediately, rather<br>&gt;&gt; than asking if I want to display it or run it?<br>&gt;&gt;<br>&gt;&gt; Sincerely,<br>
&gt;&gt;<br>&gt;&gt; Ron<br>&gt;&gt;<br>&gt;&gt; --<br>&gt;&gt;<br>&gt;&gt; (PS - If you email me and don&#39;t get a quick response, you might want to<br>&gt;&gt; call on the phone.  I get about 300 emails per day from alternate energy<br>
&gt;&gt; mailing lists and such.  I don&#39;t always see new messages very quickly.)<br>&gt;&gt;<br>&gt;&gt; Ron Frazier<br>&gt;&gt;<br>&gt;&gt; 770-205-9422 (O)   Leave a message.<br>&gt;&gt; linuxdude AT <a href="http://c3energy.com">c3energy.com</a><br>
&gt;&gt;<br>&gt;&gt; _______________________________________________<br>&gt;&gt; Ale mailing list<br>&gt;&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo/ale">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt;&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo">http://mail.ale.org/mailman/listinfo</a><br>&gt;&gt;<br>&gt; <br>&gt; <br>&gt; <br>&gt; -- <br>&gt; .!# RichardBronosky #!.<br>
</div>