<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Haiku/BeOS Tip Server &#187; Terminal</title>
	<atom:link href="http://betips.net/category/terminal/feed/" rel="self" type="application/rss+xml" />
	<link>http://betips.net</link>
	<description>Tips and tricks for Haiku/BeOS users</description>
	<lastBuildDate>Sun, 22 Nov 2009 17:48:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Don&#8217;t duplicate commands</title>
		<link>http://betips.net/2009/10/05/dont-duplicate-commands/</link>
		<comments>http://betips.net/2009/10/05/dont-duplicate-commands/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 15:06:48 +0000</pubDate>
		<dc:creator>Michel Clasquin-Johnson</dc:creator>
				<category><![CDATA[Haiku]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://betips.net/?p=763</guid>
		<description><![CDATA[When you start working in Haiku, it is tempting to hit the repositories and download everything in sight. A lot of command-line files can be found there from the BeOS days. But you might want to check if you don&#8217;t already have them.
Take wget, for example: an excellent command-line utility that will reach out over [...]]]></description>
			<content:encoded><![CDATA[<p>When you start working in Haiku, it is tempting to hit the repositories and download everything in sight. A lot of command-line files can be found there from the BeOS days. But you might want to check if you don&#8217;t already have them.</p>
<p>Take wget, for example: an excellent command-line utility that will reach out over the net and retrieve a file. You will find it on both Bebits and Haikuware, and if you download it you should install it into <em>/boot/home/config/bin</em>.</p>
<p>But wait a minute! Haiku already has its own wget, in <em>/boot/system/bin</em>. Now suppose you had both, which one would activate if you typed  <em>wget</em> in the Terminal? That is easy to find out, just type the following command:</p>
<p><em>echo $PATH</em></p>
<p>and it will spit out a list of directories all ending with &#8220;bin&#8221; (for &#8220;binary&#8221;). Whenever you type a command in the Terminal, it will search those directories, in that exact order, for something to execute. On a typical system, <em>/boot/home/config/bin</em> always wins.</p>
<p>In fact, Haiku contains a lot of these command-line utilities that used to be separate downloads in BeOS. When I examined my bin directories I found duplicates of <em>wget</em>, <em>top</em>, <em>reindex</em>, <em>clear</em> and <em>tput</em>.  Now maybe the one in <em>/boot/home/config/bin</em> really is more up-to-date, in which case you can just leave it alone. But will you remember to check after Haiku next receives an update? And there is a real possibility that you are using an out-of-date version.</p>
<p>So before you download and install anything for the Haiku command line, just open a Terminal and type that command to see if it isn&#8217;t there already.</p>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/2009/10/05/dont-duplicate-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use a filepanel in your script</title>
		<link>http://betips.net/2009/09/25/use-a-filepanel-in-your-script/</link>
		<comments>http://betips.net/2009/09/25/use-a-filepanel-in-your-script/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 10:47:11 +0000</pubDate>
		<dc:creator>Michel Clasquin-Johnson</dc:creator>
				<category><![CDATA[Haiku]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://betips.net/?p=740</guid>
		<description><![CDATA[BeOS has long had the alert command. With alert, you can put up a little message on the screen with one to three buttons:
alert &#8220;Hello World&#8221; &#8220;go away&#8221; &#8220;hello&#8221; &#8220;ok&#8221;
With Haiku alpha1, the dev team seems to have slipped something else in quietly: filepanel
filepanel -d ~/Desktop -t &#8220;Open a File&#8221;

filepanel returns the full pathname of [...]]]></description>
			<content:encoded><![CDATA[<p>BeOS has long had the <em>alert</em> command. With alert, you can put up a little message on the screen with one to three buttons:</p>
<p><em>alert &#8220;Hello World&#8221; &#8220;go away&#8221; &#8220;hello&#8221; &#8220;ok&#8221;</em></p>
<p>With Haiku alpha1, the dev team seems to have slipped something else in quietly: <em>filepanel</em></p>
<p><em>filepanel -d ~/Desktop -t &#8220;Open a File&#8221;</em></p>
<p><img class="size-medium wp-image-745 alignleft" title="fp" src="http://betips.net/wp-content/uploads/2009/09/fp-300x222.jpg" alt="fp" width="300" height="222" /></p>
<p><em>filepanel</em> returns the full pathname of the selected file to standard output. This means that scripts can now ask the user where an app should be installed, for example, or whether to put a symlink in the Deskbar menu and what to call it.</p>
<p>Documentation seems limited to running <em>filepanel</em> with the <em>&#8211;help</em> parameter.</p>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/2009/09/25/use-a-filepanel-in-your-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customize your Terminal prompt</title>
		<link>http://betips.net/1997/09/09/customize-your-terminal-prompt/</link>
		<comments>http://betips.net/1997/09/09/customize-your-terminal-prompt/#comments</comments>
		<pubDate>Tue, 09 Sep 1997 09:36:29 +0000</pubDate>
		<dc:creator>shacker</dc:creator>
				<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://www.birdhouse.org/betips/?p=2</guid>
		<description><![CDATA[Open /boot/home/.profile and scan down until you find a line that reads:
PS1=&#8217;$ &#8216;
Edit it so that it reads
PS1=&#8217;$PWD&#62; &#8216;
The next time you open up Terminal, the prompt will report the current directory, no matter what you do. PWD is a Unix/Be command meaning Print Working Directory &#8212; you&#8217;ve just told Terminal to print the working [...]]]></description>
			<content:encoded><![CDATA[<p>Open <code>/boot/home/.profile</code> and scan down until you find a line that reads:</p>
<p>PS1=&#8217;$ &#8216;</p>
<p>Edit it so that it reads</p>
<p>PS1=&#8217;$PWD&gt; &#8216;</p>
<p>The next time you open up Terminal, the prompt will report the current directory, no matter what you do. PWD is a Unix/Be command meaning Print Working Directory &#8212; you&#8217;ve just told Terminal to print the working directory every time it displays a prompt. If you&#8217;re a migrating DOS person, you&#8217;ll welcome this extra bit of information.</p>
<p>It should be pointed out that using the single quotes (&#8221;) are important. If you use double quotes (&#8220;&#8221;) instead, the prompt will be set to the current directory at the time of opening the terminal and then stay unchanged.</p>
<p>Reason is that within double-quotes all variables like $PWD are evaluated immediately, whereas within single quotes they aren&#8217;t. That means:</p>
<p>PS1=&#8217;$PWD&gt; &#8216; -&gt; PS1 is in fact set to &#8216;$PWD&gt; &#8216;<br />
PS1=&#8221;$PWD&gt; &#8221; -&gt; PS1 is in fact set to &#8216;/boot/home&gt; &#8216;</p>
<p>You can further customize your prompt by including actual phrases, or anything you find useful or fun. For instance: /boot/home/ &#8212; What&#8217;s up, cap&#8217;n? &gt;</p>
<p>Thanks to <a href="mailto:lars@cableinet.co.uk">Lars Duening</a> for the shell expansion details on this tip.</p>
<hr />Just Sherrill (justin@shiningsilence.com) adds this information:</p>
<p>By setting parameters in your <code>.profile</code>, there are seemingly endless ways to customize your Terminal prompt.</p>
<p>For example, inserting <code>PS1='$PWD'</code> will make your prompt display the current working directory, which can be handy. However, as you work farther down a set of directories, your prompt can end up taking most of the line.</p>
<p>Instead, the string <code>W</code> will print the name of the directory you are in, without the full path. You can even mix it with color commands. The following example gives you the current directory, without the path, but with a red colon at the end of the prompt.</p>
<p><code>PS1='W/?33[1;31m:?33[m '</code></p>
<p>There are lots of other things you can include in your Terminal prompt, listed below: (stolen from <a href="http://doc.rmplc.co.uk/linux/LDP/HOWTO/Bash-Prompt-HOWTO-2.html">http://d oc.rmplc.co.uk/linux/LDP/HOWTO/Bash-Prompt-HOWTO-2.html</a>, and probably available from many other places as well. Not all of these are useful yet on BeOS.)</p>
<pre>       a     an ASCII bell character (07)
       d     the  date  in  "Weekday  Month  Date" format  (e.g., "Tue May 26")

       e     an ASCII escape character (033)
       h     the hostname up to the first `.'
       H     the hostname

     newline

     carriage return
       s     the name of the shell, the  basename  of  $0  (the portion
 following the final slash)
       	     the current time in 24-hour HH:MM:SS format
       T     the current time in 12-hour HH:MM:SS format
       @     the current time in 12-hour am/pm format
       u     the username of the current user
       v     the version of bash (e.g., 2.00)
       V     the  release  of  bash, version + patchlevel (e.g., 2.00.0)
       w     the current working directory
       W     the basename of the current  working  directory
       !     the history number of this command
       #     the command number of this command
       $     if  the effective UID is 0, a #, otherwise a $

nn   the character  corresponding  to  the  octal number nnn
       \     a backslash
       [     begin a sequence of non-printing characters,
       which could be used to embed a terminal control sequence into the prompt
       ]     end a sequence of non-printing characters</pre>
<hr />onyx m. reyes (onyx_reyes@yahoo.com) adds still more information:</p>
<p>The prompt style has four elements: foreground color, background<br />
color, effect (shadow or normal) and prompt script/functions.</p>
<p>The escape code template:</p>
<p>'e[X;Y;Z + m A' or '?33[X;Y;Z + m A'</p>
<p>the escape code can be "e" or "?33" its your preference.<br />
You can arrange/exclude X, Y, Z in any order and as long as they are<br />
seperated with a ";" and the last value has an "m" after it.</p>
<p>Example:</p>
<p>ps1='e[40;01,37m $PWD e[m/&gt;'</p>
<p>ps1='e[01;34m $PWD e[m/&gt;'</p>
<p>Use the escape sequence every time you want a change the style of<br />
the prompt.</p>
<p>Finally, here is the list of colors codes and effects taken out<br />
of my /boot/home/.profile (you can cut and past this if you want)</p>
<pre>PS1='[e[0;36;44m 	 e[m] [e[0;34;46m $PWD e[m]
[e[1;37;40m
DarkStar e[m]-['</pre>
<p>Some tips:</p>
<ul>
<li>using the same forground and background color will make it<br />
really hard to read.</li>
<li>keep in mind that PS1 command will display spaces.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/1997/09/09/customize-your-terminal-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tab completion, part I</title>
		<link>http://betips.net/1997/09/09/tab-completion-part-i/</link>
		<comments>http://betips.net/1997/09/09/tab-completion-part-i/#comments</comments>
		<pubDate>Tue, 09 Sep 1997 09:36:29 +0000</pubDate>
		<dc:creator>shacker</dc:creator>
				<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://www.birdhouse.org/betips/?p=3</guid>
		<description><![CDATA[On most Unix systems, and in BeOS, you can let the OS finish typing long path and filenames for you by hitting the Tab key after you&#8217;ve typed a partial pathname. For instance, let&#8217;s say you want to gunzip a file called
BeBox_Updater_ROM_September23_1997.tar.gz
and you&#8217;re already in the directory where that file lives. Try typing
gunzip BeB
and then [...]]]></description>
			<content:encoded><![CDATA[<p>On most Unix systems, and in BeOS, you can let the OS finish typing long path and filenames for you by hitting the Tab key after you&#8217;ve typed a partial pathname. For instance, let&#8217;s say you want to gunzip a file called</p>
<p><code>BeBox_Updater_ROM_September23_1997.tar.gz</code></p>
<p>and you&#8217;re already in the directory where that file lives. Try typing</p>
<p><code>gunzip BeB</code></p>
<p>and then hit the Tab key. You&#8217;ll see your command line automatically fill in with the complete filename, and all you have to do is hit Return. But what if there&#8217;s another file that starts with BeB? No problem &#8212; the command line is smart &#8212; it will complete out to the point where it&#8217;s not sure which file you mean. Then all you have to do is type the next <strong>unique</strong> letter or letters and hit Tab again.</p>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/1997/09/09/tab-completion-part-i/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kill rogue apps</title>
		<link>http://betips.net/1997/09/09/kill-rogue-apps/</link>
		<comments>http://betips.net/1997/09/09/kill-rogue-apps/#comments</comments>
		<pubDate>Tue, 09 Sep 1997 09:36:29 +0000</pubDate>
		<dc:creator>shacker</dc:creator>
				<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://www.birdhouse.org/betips/?p=5</guid>
		<description><![CDATA[If apps hang and either won&#8217;t go away or are interrupting other apps, open up Terminal, and type
 ps
 This will display a list of all running processes. Each process has an associated ID# at the left of the screen. Type
 kill 123 [where 123 is the ID of the app that's misbehaving]
 and it [...]]]></description>
			<content:encoded><![CDATA[<p>If apps hang and either won&#8217;t go away or are interrupting other apps, open up Terminal, and type</p>
<p> ps</p>
<p> This will display a list of all running processes. Each process has an associated ID# at the left of the screen. Type</p>
<p> kill 123 [where 123 is the ID of the app that's misbehaving]</p>
<p> and it will die. If it doesn&#8217;t die, try the super killer:</p>
<p> kill 123 -9</p>
<p> If you don&#8217;t want to scan through the whole list of running processes and you know the name of the naughty app, use grep to find its ID quickly:</p>
<p> ps | grep appname</p>
<p>which will display just the lines in ps that contain that appname.</p>
<p> If the machine has become so unstable that you can&#8217;t even open Terminal, try switching to another workspace with the F keys (Alt+F1, Alt+F2, etc.) and try running Terminal from there. Another option if you can&#8217;t open a terminal is to get on another machine and telnet into your BeOS machine. You can then kill the offending app remotely. It&#8217;s a good idea to have a copy of <a href="http://www.bebits.com/app/313">ProcessController</a> on your system to handle process and app management graphically. To be certain Tmanager and/or Terminal will be launchable on an unstable system, just have them launch automatically upon boot by launching them from your UserBootScript. That way they&#8217;ll already be open and ready to handle contingencies.</p>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/1997/09/09/kill-rogue-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tab
 completion, part II</title>
		<link>http://betips.net/1997/09/09/tab-completion-part-ii/</link>
		<comments>http://betips.net/1997/09/09/tab-completion-part-ii/#comments</comments>
		<pubDate>Tue, 09 Sep 1997 09:36:29 +0000</pubDate>
		<dc:creator>shacker</dc:creator>
				<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://www.birdhouse.org/betips/?p=7</guid>
		<description><![CDATA[This is an add-on to the Tab Completion tip.
If you&#8217;re trying to remember the name of a particular command, and can only think of the first one or two letters, just type those letters and hit Tab twice. All available commands starting with that letter or letters will appear in a list.
The same trick works [...]]]></description>
			<content:encoded><![CDATA[<p>This is an add-on to the Tab Completion tip.</p>
<p>If you&#8217;re trying to remember the name of a particular command, and can only think of the first one or two letters, just type those letters and hit Tab twice. All available commands starting with that letter or letters will appear in a list.</p>
<p>The same trick works when constructing a command looking for the names of files to operate on &#8212; typing a letter and hitting Tab twice will show a list of all allowable filenames.</p>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/1997/09/09/tab-completion-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More kill rogue apps</title>
		<link>http://betips.net/1997/09/09/more-kill-rogue-apps/</link>
		<comments>http://betips.net/1997/09/09/more-kill-rogue-apps/#comments</comments>
		<pubDate>Tue, 09 Sep 1997 09:36:29 +0000</pubDate>
		<dc:creator>shacker</dc:creator>
				<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://www.birdhouse.org/betips/?p=13</guid>
		<description><![CDATA[In addition to the age-old Unix ps/kill combo listed above, BeOS lets you take
the easy route. Try kill &#8216;appname&#8217; (ex. kill NetPositive)
This is much simpler than grepping for the pid.
But there&#8217;s an even cleaner way, that you might try first. Download the
href=&#8221;http://w3.datanet.hu/~amezei/&#8221;&#62;hey scripting utility and install it
in /boot/home/config/bin. Then use:
hey &#8216;appname&#8217; quit
This will, as it [...]]]></description>
			<content:encoded><![CDATA[<p>In addition to the age-old Unix ps/kill combo listed above, BeOS lets you take<br />
the easy route. Try kill &#8216;appname&#8217; (ex. kill NetPositive)</p>
<p>This is much simpler than grepping for the pid.</p>
<p>But there&#8217;s an even cleaner way, that you might try first. Download the<br />
href=&#8221;http://w3.datanet.hu/~amezei/&#8221;&gt;hey scripting utility and install it<br />
in /boot/home/config/bin. Then use:</p>
<p>hey &#8216;appname&#8217; quit</p>
<p>This will, as it suggests, tell the app to quit itself, which might shut it<br />
down a little cleaner than a raw kill, although usually if you&#8217;re at this<br />
stage, you&#8217;re gonna have to do a kill anyway.</p>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/1997/09/09/more-kill-rogue-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fortunes told</title>
		<link>http://betips.net/1997/09/09/fortunes-told/</link>
		<comments>http://betips.net/1997/09/09/fortunes-told/#comments</comments>
		<pubDate>Tue, 09 Sep 1997 09:36:29 +0000</pubDate>
		<dc:creator>shacker</dc:creator>
				<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://www.birdhouse.org/betips/?p=34</guid>
		<description><![CDATA[BeOS includes a port of the famous Unix &#8220;fortune&#8221; command, which delivers a random pseudo-profundity when you type &#8220;fortune&#8221; at a Terminal prompt. To get your fortune told every time you launch the Terminal, open up the file /boot/home/.profile and add these lines:
/boot/beos/bin/fortune
printf "
"
]]></description>
			<content:encoded><![CDATA[<p>BeOS includes a port of the famous Unix &#8220;fortune&#8221; command, which delivers a random pseudo-profundity when you type &#8220;fortune&#8221; at a Terminal prompt. To get your fortune told every time you launch the Terminal, open up the file /boot/home/.profile and add these lines:</p>
<p><code>/boot/beos/bin/fortune<br />
printf "<br />
"</code></p>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/1997/09/09/fortunes-told/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text files from directory listings</title>
		<link>http://betips.net/1997/09/09/text-files-from-directory-listings/</link>
		<comments>http://betips.net/1997/09/09/text-files-from-directory-listings/#comments</comments>
		<pubDate>Tue, 09 Sep 1997 09:36:29 +0000</pubDate>
		<dc:creator>shacker</dc:creator>
				<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://www.birdhouse.org/betips/?p=48</guid>
		<description><![CDATA[From time to time, you may find it useful to have a text record of a particular directory listing. For instance, you may need to mail a list of all the JPEGs in a project folder, or you may need to send documentation of what&#8217;s going on on your hard drive to a software vendor. [...]]]></description>
			<content:encoded><![CDATA[<p>From time to time, you may find it useful to have a text record of a particular directory listing. For instance, you may need to mail a list of all the JPEGs in a project folder, or you may need to send documentation of what&#8217;s going on on your hard drive to a software vendor. This is something that Tracker can&#8217;t do, but it&#8217;s easy with bash (Terminal).</p>
<p> Fine-tune your listing until you&#8217;ve got it right, then just use &#8220;&amp;gt;&#8221; to redirect the output, then specify a path and filename. For example:</p>
<p><b>ls -l -R *.jpg > /boot/home/Desktop/jpegs.txt</b></p>
<p> This will look down recursively from the current directory, creating a detailed listing of files ending with the .jpg extension, then spit the results to a file called jpegs.txt on your desktop.</p>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/1997/09/09/text-files-from-directory-listings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View and change file attributes</title>
		<link>http://betips.net/1997/09/09/view-and-change-file-attributes/</link>
		<comments>http://betips.net/1997/09/09/view-and-change-file-attributes/#comments</comments>
		<pubDate>Tue, 09 Sep 1997 09:36:29 +0000</pubDate>
		<dc:creator>shacker</dc:creator>
				<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://www.birdhouse.org/betips/?p=51</guid>
		<description><![CDATA[In addition to the many standard Unix tools Be has included in /boot/beos/bin, there are also a couple of custom tools that make it easy to view and change a file&#8217;s attributes.
 To view a file&#8217;s attributes from the Terminal, type listattr filename.
 However, this will only show you the byte size, name, and type [...]]]></description>
			<content:encoded><![CDATA[<p>In addition to the many standard Unix tools Be has included in /boot/beos/bin, there are also a couple of custom tools that make it easy to view and change a file&#8217;s attributes.</p>
<p> To view a file&#8217;s attributes from the Terminal, type <b>listattr filename</b>.</p>
<p> However, this will only show you the byte size, name, and type of the attributes. It won&#8217;t show you its value (contents). To see contents, use the Tracker Add-On AttributeViewer. To add attributes to a file type <b>addattr fieldname value filename</b></p>
<p>For example: addattr huey duey foobar will add an attribute named &#8220;huey&#8221; with a value of &#8220;duey&#8221; to a file called foobar. To remove attributes, use: rmattr fieldname filename. You can get more details on usage by typing <b>addattr &#8211;help</b> .</p>
<p> Better yet, check out the following shell scripts that use this and other commands to process multiple files&#8230;</p>
<p> email_conv &#8211; Email Conversion Package, at <br /> <a HREF="http://www.box.net.au/~jaq/email_conv.zip">http://www.box.net.au/~jaq/ema il_conv.zip</a><br /> [Editor's note: URL no longer functional].</p>
<p>People Porter, at<br /> <a HREF="http://www.betips.net/software/">http://www.betips.net/software/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://betips.net/1997/09/09/view-and-change-file-attributes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
