<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: makeself 制作自解压压缩包</title>
	<atom:link href="http://linuxtoy.org/archives/makeself.html/feed" rel="self" type="application/rss+xml" />
	<link>http://linuxtoy.org/archives/makeself.html</link>
	<description>LinuxTOY 是一个致力于提供 Linux 相关资讯的专题站点。如果您发现了好用好玩的 Linux 东东并愿意发扬自由、分享的精神，可以点击顶部导航 Contact 按钮进行投稿。</description>
	<pubDate>Fri, 19 Mar 2010 15:22:05 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: lance</title>
		<link>http://linuxtoy.org/archives/makeself.html#comment-100434</link>
		<dc:creator>lance</dc:creator>
		<pubDate>Wed, 07 Jan 2009 02:18:25 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/?p=2707#comment-100434</guid>
		<description>&lt;p&gt;和checkinstall差不多啊&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>和checkinstall差不多啊</p>]]></content:encoded>
	</item>
	<item>
		<title>By: walkerxk</title>
		<link>http://linuxtoy.org/archives/makeself.html#comment-100428</link>
		<dc:creator>walkerxk</dc:creator>
		<pubDate>Wed, 07 Jan 2009 01:28:33 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/?p=2707#comment-100428</guid>
		<description>&lt;p&gt;不用这么麻烦，在文件前面加上一段代码就能自解压了：&lt;/p&gt;

&lt;h1&gt;!/bin/bash&lt;/h1&gt;

&lt;p&gt;sed '1,/^#script end/d' $0&#62;b.tar.gz
tar zxf b.tar.gz
rm b.tar.gz
exit&lt;/p&gt;

&lt;h1&gt;script end&lt;/h1&gt;

&lt;p&gt;如果怕重名，就改到/tmp下面。
realplay什么的bin文件都是这样打包的。&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>不用这么麻烦，在文件前面加上一段代码就能自解压了：</p>

<h1>!/bin/bash</h1>

<p>sed '1,/^#script end/d' $0&gt;b.tar.gz
tar zxf b.tar.gz
rm b.tar.gz
exit</p>

<h1>script end</h1>

<p>如果怕重名，就改到/tmp下面。
realplay什么的bin文件都是这样打包的。</p>]]></content:encoded>
	</item>
	<item>
		<title>By: fcicq</title>
		<link>http://linuxtoy.org/archives/makeself.html#comment-100371</link>
		<dc:creator>fcicq</dc:creator>
		<pubDate>Tue, 06 Jan 2009 11:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/?p=2707#comment-100371</guid>
		<description>&lt;p&gt;嘘... Gentoo 用户可以 src2pkg.sh [URL to tar file], 直接安装, 用正常的方法卸载...
http://linuxtoy.org/archives/which-distro.html#comment-99710&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>嘘... Gentoo 用户可以 src2pkg.sh [URL to tar file], 直接安装, 用正常的方法卸载...
<a href="http://linuxtoy.org/archives/which-distro.html#comment-99710" rel="nofollow">http://linuxtoy.org/archives/which-distro.html#comment-99710</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: hmy</title>
		<link>http://linuxtoy.org/archives/makeself.html#comment-100358</link>
		<dc:creator>hmy</dc:creator>
		<pubDate>Tue, 06 Jan 2009 09:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/?p=2707#comment-100358</guid>
		<description>&lt;p&gt;可以考虑弄到一个独立的目录，然后自己再写一个uninstall 脚本删除该目录&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>可以考虑弄到一个独立的目录，然后自己再写一个uninstall 脚本删除该目录</p>]]></content:encoded>
	</item>
	<item>
		<title>By: yhlfh</title>
		<link>http://linuxtoy.org/archives/makeself.html#comment-100351</link>
		<dc:creator>yhlfh</dc:creator>
		<pubDate>Tue, 06 Jan 2009 08:07:59 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/?p=2707#comment-100351</guid>
		<description>&lt;p&gt;这种包包安装是方便了，可是卸载呢？&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>这种包包安装是方便了，可是卸载呢？</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Toy</title>
		<link>http://linuxtoy.org/archives/makeself.html#comment-100346</link>
		<dc:creator>Toy</dc:creator>
		<pubDate>Tue, 06 Jan 2009 07:02:06 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/?p=2707#comment-100346</guid>
		<description>&lt;p&gt;@&lt;a href="#comment-100344" rel="nofollow"&gt;hmy&lt;/a&gt;: 只要在适当位置（通常是第一段末尾）加入 &lt;code&gt;&#60;!--more--&gt;&lt;/code&gt; 就可以了。请见：&lt;/p&gt;

&lt;p&gt;http://linuxtoy.org/faq/style-guide&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@<a href="#comment-100344" rel="nofollow">hmy</a>: 只要在适当位置（通常是第一段末尾）加入 <code>&lt;!--more--></code> 就可以了。请见：</p>

<p><a href="http://linuxtoy.org/faq/style-guide" rel="nofollow">http://linuxtoy.org/faq/style-guide</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: hmy</title>
		<link>http://linuxtoy.org/archives/makeself.html#comment-100344</link>
		<dc:creator>hmy</dc:creator>
		<pubDate>Tue, 06 Jan 2009 06:44:15 +0000</pubDate>
		<guid isPermaLink="false">http://linuxtoy.org/?p=2707#comment-100344</guid>
		<description>&lt;p&gt;怎么全部显示出来了，麻烦linuxtoy自己处理修改下吧&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>怎么全部显示出来了，麻烦linuxtoy自己处理修改下吧</p>]]></content:encoded>
	</item>
</channel>
</rss>
