harumph!<br><br>I have a ~/bin on the multiple machines that I grep through for scripts of interest. Sadly it&#39;s all very, very specific so of no use on any other system.<br><br><div class="gmail_quote">On Mon, Mar 21, 2011 at 9:08 AM, James Sumners <span dir="ltr">&lt;<a href="mailto:james.sumners@gmail.com">james.sumners@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Yay for VCS religion wars!<br>
<br>
Mercurial FTW! <a href="https://bitbucket.org/jsumners" target="_blank">https://bitbucket.org/jsumners</a><br>
<div class="im"><br>
On Mon, Mar 21, 2011 at 12:01 AM, Michael Trausch &lt;<a href="mailto:mike@trausch.us">mike@trausch.us</a>&gt; wrote:<br>
</div><div><div></div><div class="h5">&gt; Hrm. Except that I strongly dislike git, and thus use the (in this case)<br>
&gt; GNU&#39;s DVCS, bzr.  ;-)<br>
&gt;<br>
&gt; --<br>
&gt; Sent from my phone... a G2 running CM7 nightlies!<br>
&gt;<br>
&gt; 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>
&gt;&gt; For this kind of thing, you really ought to be using github. Even if you<br>
&gt;&gt; never host a full open source project, for something like this you post a<br>
&gt;&gt; &quot;gist&quot;. For example, here is one of mine:<br>
&gt;&gt; <a href="https://gist.github.com/806251That" target="_blank">https://gist.github.com/806251That</a> will open you up to an entire<br>
&gt;&gt; community of people who can &quot;fork&quot; your<br>
&gt;&gt; scripts and post their changes. I often use it for oneliners that I want<br>
&gt;&gt; to<br>
&gt;&gt; keep handy, like my evil: <a href="https://gist.github.com/422582" target="_blank">https://gist.github.com/422582</a> But I also use it<br>
&gt;&gt; to host things as simple as a single line of code that I often want to<br>
&gt;&gt; reuse, like: <a href="https://gist.github.com/570492" target="_blank">https://gist.github.com/570492</a><br>
&gt;&gt;<br>
&gt;&gt; Do that enough and you will eventually have so many code patterns in your<br>
&gt;&gt; toolkit that you can make an open source repo out of them, like:<br>
&gt;&gt; <a href="https://github.com/RichardBronosky/tools/tree/master/bash.patterns" target="_blank">https://github.com/RichardBronosky/tools/tree/master/bash.patterns</a><br>
&gt;&gt;<br>
&gt;&gt; The point is this: If you write code, any code, you should be on github.<br>
&gt;&gt;<br>
&gt;&gt; On Sun, Mar 20, 2011 at 11:04 AM, Ron Frazier<br>
&gt;&gt; &lt;<a href="mailto:atllinuxenthinfo@c3energy.com">atllinuxenthinfo@c3energy.com</a><br>
&gt;&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; Hello all,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I&#39;ve written my first Linux shell script as follows and saved it on the<br>
&gt;&gt;&gt; Desktop under the name Check Big Files and given it execute permission.<br>
&gt;&gt;&gt; I double click on it, the system asks whether to display or run it, and<br>
&gt;&gt;&gt; I say run.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; echo &quot;Files larger than 100 MB starting from /.&quot; &gt; file_list.txt<br>
&gt;&gt;&gt; echo &quot;Excluding /swapfile, /sys/devices, and /proc.&quot; &gt;&gt; file_list.txt<br>
&gt;&gt;&gt; echo -n &quot;Computer name: &quot; &gt;&gt; file_list.txt<br>
&gt;&gt;&gt; uname -n &gt;&gt; file_list.txt<br>
&gt;&gt;&gt; echo &quot; &quot; &gt;&gt; file_list.txt<br>
&gt;&gt;&gt; date &gt;&gt; file_list.txt<br>
&gt;&gt;&gt; echo &quot; &quot; &gt;&gt; file_list.txt<br>
&gt;&gt;&gt; find / -type f -size +100M | grep -v /swapfile | grep -v /sys/devices |<br>
&gt;&gt;&gt; grep -v /proc &gt;&gt; file_list.txt<br>
&gt;&gt;&gt; echo &quot; &quot; &gt;&gt; file_list.txt<br>
&gt;&gt;&gt; date &gt;&gt; file_list.txt<br>
&gt;&gt;&gt; gedit file_list.txt<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; It works very nicely, and give&#39;s me an instant report on large files in<br>
&gt;&gt;&gt; my system. You guys can tell me if you think anything needs changing to<br>
&gt;&gt;&gt; improve it. Anyone is welcome to use the script for their own<br>
&gt;&gt;&gt; purposes. If you publish it somewhere, give me the credit. Here&#39;s what<br>
&gt;&gt;&gt; it does.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 1) Delete file_list.txt if it exists.<br>
&gt;&gt;&gt; 2) Create file_list.txt and put some headers, the computer name, and the<br>
&gt;&gt;&gt; date in it.<br>
&gt;&gt;&gt; 3) Find all files &gt; 100 MB in size starting from / and list them in the<br>
&gt;&gt;&gt; text file, while excluding /swapfile, /sys/devices, and /proc.<br>
&gt;&gt;&gt; 4) Append the date to the end of the file.<br>
&gt;&gt;&gt; 5) Display the text file.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I have a question. How would I force it to execute immediately, rather<br>
&gt;&gt;&gt; than asking if I want to display it or run it?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Sincerely,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Ron<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; (PS - If you email me and don&#39;t get a quick response, you might want to<br>
&gt;&gt;&gt; call on the phone. I get about 300 emails per day from alternate energy<br>
&gt;&gt;&gt; mailing lists and such. I don&#39;t always see new messages very quickly.)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Ron Frazier<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; <a href="tel:770-205-9422">770-205-9422</a> (O) Leave a message.<br>
&gt;&gt;&gt; linuxdude AT <a href="http://c3energy.com" target="_blank">c3energy.com</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; _______________________________________________<br>
&gt;&gt;&gt; Ale mailing list<br>
&gt;&gt;&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt;&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt;&gt;&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt;&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; .!# RichardBronosky #!.<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Ale mailing list<br>
&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt;<br>
&gt;<br>
<br>
<br>
<br>
--<br>
</div></div>James Sumners<br>
<a href="http://james.roomfullofmirrors.com/" target="_blank">http://james.roomfullofmirrors.com/</a><br>
<br>
&quot;All governments suffer a recurring problem: Power attracts<br>
pathological personalities. It is not that power corrupts but that it<br>
is magnetic to the corruptible. Such people have a tendency to become<br>
drunk on violence, a condition to which they are quickly addicted.&quot;<br>
<br>
Missionaria Protectiva, Text QIV (decto)<br>
CH:D 59<br>
<div><div></div><div class="h5"><br>
_______________________________________________<br>
Ale mailing list<br>
<a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
See JOBS, ANNOUNCE and SCHOOLS lists at<br>
<a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>-- <br>James P. Kinney III<br>I would rather stumble along in freedom than walk effortlessly in chains.<br><br><br>