<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://crunchbang.org/forums/extern.php?action=feed&amp;type=rss&amp;tid=8753" rel="self" type="application/rss+xml" />
		<title><![CDATA[CrunchBang Linux Forums / Bash (now Dash) "places" openbox pipe menu]]></title>
		<link>http://crunchbang.org/forums/viewtopic.php?id=8753</link>
		<description><![CDATA[The most recent posts in Bash (now Dash) "places" openbox pipe menu.]]></description>
		<lastBuildDate>Fri, 05 Oct 2012 05:56:09 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=262470#p262470</link>
			<description><![CDATA[<p>It&#039;s common to find scripts that run on bash but break with a top line of #!/bin/sh because debian&#039;s default shell is dash. This was a reverse case! I&#039;d been developing the script on dash almost since the start and missed a syntax error (I think it&#039;s an error) that dash, for some reason, accepts but bash chokes on.</p><p>Specifically,<br />this:</p><div class="codebox"><pre><code>string2=$( command ) &lt;&lt;XXX
string1
XXX</code></pre></div><p>doesn&#039;t work on bash, but this does:</p><div class="codebox"><pre><code>string2=$( command &lt;&lt;XXX
string1
XXX
)</code></pre></div><p>Now fixed. <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/smile.png" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (johnraff)]]></author>
			<pubDate>Fri, 05 Oct 2012 05:56:09 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=262470#p262470</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93993#p93993</link>
			<description><![CDATA[<p>I like where this is heading... solid pipe menu&#160; --&gt; gpl&#039;ed for #!</p>]]></description>
			<author><![CDATA[dummy@example.com (rstrcogburn)]]></author>
			<pubDate>Wed, 01 Dec 2010 00:49:09 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93993#p93993</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93943#p93943</link>
			<description><![CDATA[<p>Nice one, thank you! <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/smile.png" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (corenominal)]]></author>
			<pubDate>Tue, 30 Nov 2010 18:17:56 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93943#p93943</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93940#p93940</link>
			<description><![CDATA[<p>I&#039;ll play it straight and use the GPL style.<br />Both now updated.</p>]]></description>
			<author><![CDATA[dummy@example.com (johnraff)]]></author>
			<pubDate>Tue, 30 Nov 2010 17:59:06 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93940#p93940</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93930#p93930</link>
			<description><![CDATA[<div class="quotebox"><cite>johnraff wrote:</cite><blockquote><div><p>I have no problem with people doing whatever they like with the code, beyond using it to persecute me in some way...</p></div></blockquote></div><p>The following is pretty standard for GPL software:</p><div class="codebox"><pre><code>#    &lt;one line to give the program&#039;s name and a brief idea of what it does.&gt;
#    Copyright (C) &lt;year&gt;  &lt;name of author&gt;
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.</code></pre></div><p>But as said by benj1, it is up to you. <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/smile.png" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (corenominal)]]></author>
			<pubDate>Tue, 30 Nov 2010 16:32:59 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93930#p93930</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93917#p93917</link>
			<description><![CDATA[<p>@johnraff</p><p><a href="https://secure.wikimedia.org/wikipedia/en/wiki/Do_What_The_Fuck_You_Want_To_Public_License">https://secure.wikimedia.org/wikipedia/ … ic_License</a> ?</p><p>seriously tho<br />any licence should be fine, the gpl v2 tends to be the most popular , in the linux eco system at least but at the end of the day its up to you, </p><p>on the other hand i do like</p><div class="codebox"><pre><code>Copyright (C) 2010 JohnRaff
this software is released under the JRL (JohnRaff Licence).


The JohnRaff Licence
---------------------------------
V0.1 Nov 2010
People [can] do whatever they like with the code, beyond using it to persecute me [the licensor] in some way...</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (benj1)]]></author>
			<pubDate>Tue, 30 Nov 2010 16:04:56 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93917#p93917</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93871#p93871</link>
			<description><![CDATA[<div class="quotebox"><cite>corenominal wrote:</cite><blockquote><div><p>@johnraff, I am working on some updates tonight and I would like to include both of your pipe menus. I noticed that you have not put any license information at the top of the scripts. It would be preferable if you could do this, but not absolutely necessary. Any thoughts?</p></div></blockquote></div><p>What kind of license do you think would be most crunchbang-compatible? I have no problem with people doing whatever they like with the code, beyond using it to persecute me in some way...</p><p>If you can suggest a suitable form of words, I&#039;d be happy to put it in.</p>]]></description>
			<author><![CDATA[dummy@example.com (johnraff)]]></author>
			<pubDate>Tue, 30 Nov 2010 05:20:12 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93871#p93871</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93650#p93650</link>
			<description><![CDATA[<div class="quotebox"><cite>corenominal wrote:</cite><blockquote><div><p>@johnraff, I am working on some updates tonight</p></div></blockquote></div><p>Updates for Statler? <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/big_smile.png" alt="big_smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Unia)]]></author>
			<pubDate>Sat, 27 Nov 2010 19:29:19 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93650#p93650</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93649#p93649</link>
			<description><![CDATA[<p>@johnraff, I am working on some updates tonight and I would like to include both of your pipe menus. I noticed that you have not put any license information at the top of the scripts. It would be preferable if you could do this, but not absolutely necessary. Any thoughts?</p>]]></description>
			<author><![CDATA[dummy@example.com (corenominal)]]></author>
			<pubDate>Sat, 27 Nov 2010 19:18:23 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93649#p93649</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93263#p93263</link>
			<description><![CDATA[<p>^ <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/big_smile.png" alt="big_smile" /> (where&#039;s the pulling-out-hair unsmiley?)</p>]]></description>
			<author><![CDATA[dummy@example.com (johnraff)]]></author>
			<pubDate>Wed, 24 Nov 2010 16:06:31 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93263#p93263</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93164#p93164</link>
			<description><![CDATA[<div class="quotebox"><cite>johnraff wrote:</cite><blockquote><div><p>&quot;&#039;&quot;\&quot;\.\.\.\\\&#039;AARRRGH\\\&#039;\!\!&quot;&#039;\&quot;</p></div></blockquote></div><p>fixed for ya <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/big_smile.png" alt="big_smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (benj1)]]></author>
			<pubDate>Tue, 23 Nov 2010 18:23:46 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93164#p93164</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93112#p93112</link>
			<description><![CDATA[<div class="quotebox"><cite>benj1 wrote:</cite><blockquote><div><p>quoting quoted quotes.</p></div></blockquote></div><p>...AARRRGH!!&#160; <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/roll.png" alt="roll" /></p>]]></description>
			<author><![CDATA[dummy@example.com (johnraff)]]></author>
			<pubDate>Tue, 23 Nov 2010 03:31:56 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93112#p93112</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93084#p93084</link>
			<description><![CDATA[<p>well the newest version certainly seems to work, I must say you must have more patience than I for quoting quoted quotes.</p>]]></description>
			<author><![CDATA[dummy@example.com (benj1)]]></author>
			<pubDate>Mon, 22 Nov 2010 21:23:13 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93084#p93084</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93053#p93053</link>
			<description><![CDATA[<div class="quotebox"><cite>johnraff wrote:</cite><blockquote><div><p>When there are a lot of files and folders without any stuff that needs escaping it does the job in 8ms instead of 43ms! <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/cool.png" alt="cool" /></p></div></blockquote></div><p>Nifty! <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/smile.png" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (corenominal)]]></author>
			<pubDate>Mon, 22 Nov 2010 17:11:34 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93053#p93053</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bash (now Dash) "places" openbox pipe menu]]></title>
			<link>http://crunchbang.org/forums/viewtopic.php?pid=93050#p93050</link>
			<description><![CDATA[<p>Hah yet another bugfix - foldernames with quotes got messed up in the last redo. While going over the code yet again I tried getting rid of the escaping functions and putting the code straight in where it&#039;s needed. What&#039;s lost in readability is made up for by speed. When there are a lot of files and folders without any stuff that needs escaping it does the job in 8ms instead of 43ms! <img src="http://crunchbang.org/forums/plugins/ezbbc/style/smilies/cool.png" alt="cool" /><br /><a href="http://crunchbanglinux.org/pastebin/838">http://crunchbanglinux.org/pastebin/838</a></p><p>(Sorry to keep hitting you all with new versions like this - I&#039;m hoping this might be close to the last...)</p>]]></description>
			<author><![CDATA[dummy@example.com (johnraff)]]></author>
			<pubDate>Mon, 22 Nov 2010 16:27:23 +0000</pubDate>
			<guid>http://crunchbang.org/forums/viewtopic.php?pid=93050#p93050</guid>
		</item>
	</channel>
</rss>
