<?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>TuxArena &#187; terminal</title>
	<atom:link href="http://www.tuxarena.com/tag/terminal/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tuxarena.com</link>
	<description>Ubuntu/Debian/Mint news and tutorials &#124; Linux stuff</description>
	<lastBuildDate>Sat, 11 May 2013 13:35:05 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Tutorial: How to Color Man Pages &amp; How It Works</title>
		<link>http://www.tuxarena.com/2012/04/tutorial-colored-man-pages-how-it-works/</link>
		<comments>http://www.tuxarena.com/2012/04/tutorial-colored-man-pages-how-it-works/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 16:08:05 +0000</pubDate>
		<dc:creator>Craciun Dan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.tuxarena.com/?p=2066</guid>
		<description><![CDATA[In this tutorial I&#8217;ll show how to get some nicely colored man pages by adding several lines inside the .bashrc file, explaining what the code means and how it works. Except for the eye-candy, colors may help when it comes to clarity, although some prefer the default monochrome approach. At the start of this article [...]]]></description>
				<content:encoded><![CDATA[<p>In this tutorial I&#8217;ll show how to get some nicely colored man pages by adding several lines inside the .bashrc file, explaining what the code means and how it works.</p>
<p><a href="http://www.tuxarena.com/wp-content/uploads/2012/04/colored_man_pages.png"><img src="http://www.tuxarena.com/wp-content/uploads/2012/04/colored_man_pages-640x357.png" alt="" title="colored_man_pages" width="640" height="357" class="aligncenter size-large wp-image-2096" /></a></p>
<p><span id="more-2066"></span></p>
<p>Except for the eye-candy, colors may help when it comes to clarity, although some prefer the default monochrome approach. At the start of this article there is the actual code which can be copied and pasted inside the ~/.bashrc file, and which can be modified depending on each person&#8217;s preferences. If you don&#8217;t care about what it does you can just insert it in ~/.bashrc, restart your terminal and start reading some man pages to see how it looks (e.g. man man). After this part I tried to explain how this code works and how to modify it in order to get new &#8216;themes&#8217;.</p>
<div class="subtitle">The code</div>
<p>For this tutorial we&#8217;ll be editing the ~/.bashrc file, which is a hidden file located in your home directory which gets read each time a new Bash instance starts up. Bash reads all the commands found in this file and executes them (hence the <b>rc</b> part, which stands for <b>r</b>un <b>c</b>ommands).</p>
<p>We will edit this file and add some lines which specify certain colors for the $LESS_TERMCAP variables.</p>
<div class="code">
export LESS_TERMCAP_mb=$(printf &#8216;\e[01;31m&#8217;) # enter blinking mode &#8211; red<br />
export LESS_TERMCAP_md=$(printf &#8216;\e[01;35m&#8217;) # enter double-bright mode &#8211; bold, magenta<br />
export LESS_TERMCAP_me=$(printf &#8216;\e[0m&#8217;) # turn off all appearance modes (mb, md, so, us)<br />
export LESS_TERMCAP_se=$(printf &#8216;\e[0m&#8217;) # leave standout mode<br />
export LESS_TERMCAP_so=$(printf &#8216;\e[01;33m&#8217;) # enter standout mode &#8211; yellow<br />
export LESS_TERMCAP_ue=$(printf &#8216;\e[0m&#8217;) # leave underline mode<br />
export LESS_TERMCAP_us=$(printf &#8216;\e[04;36m&#8217;) # enter underline mode &#8211; cyan
</div>
<p>Don&#8217;t forget to reset your terminal after entering this code in order for the changes to take effect, e.g. type <b>reset</b> or <b>exit</b> and start up another shell.</p>
<p>This will mostly use magenta and cyan as the colors. Next, I&#8217;ll explain what these lines mean and how you can modify the colors.</p>
<div class="subtitle">Explaining it</div>
<p>As you can see, there are several variables which are assigned different values. As shown in the comments after the # sign, every one is used when needed. When text is in bold (double-bright mode), the formatting option is set to bold and the color magenta.</p>
<p>Let&#8217;s take, for example, the following line:</p>
<div class="code">
export LESS_TERMCAP_md=$(printf &#8216;\e[01;35m&#8217;) # enter double-bright mode &#8211; bold, magenta
</div>
<p>This line could be broken into this:</p>
<ul>
<li>the environment variable LESS_TERMCAP_md will be assigned the value to the right of the equal sign
<li>the right side says execute the command between the <b>$(</b> and <b>)</b> characters, just like the older <b>` `</b> did
<li>printf is a command similar with C&#8217;s printf and means &#8220;print with format&#8221;. The characters between the double quotes specify a color and a font style (e.g. in this case, bold and magenta).
</ul>
<p>The part that is inside the double quotes are format specifiers like bold, regular, or color to be used. More on these can be found on Wikipedia, <a href="http://en.wikipedia.org/wiki/ANSI_escape_code">here</a>.</p>
<div class="subtitle">Color codes</div>
<p>The color codes are as follows:</p>
<ul>
<li>30 &#8211; <font color="black">black</font>
<li>31 &#8211; <font color="red">red</font>
<li>32 &#8211; <font color="green">green</font>
<li>33 &#8211; <font color="orange">orange</font>
<li>34 &#8211; <font color="blue">blue</font>
<li>35 &#8211; <font color="magenta">magenta</font>
<li>36 &#8211; <font color="cyan">cyan</font>
<li>37 &#8211; <font color="black">white</font>
</ul>
<p>Some other escape codes which you could use include:</p>
<ul>
<li>0 &#8211; reset/normal
<li>1 &#8211; bold
<li>3 &#8211; italic/reversed
<li>4 &#8211; underlined
<li>5 &#8211; blink
</ul>
<p>You can check this by typing in a terminal something like:</p>
<div class="code">
printf &#8216;\e[31m&#8217;<br />
printf &#8216;\e[32m&#8217;<br />
printf &#8216;\e[37m&#8217;
</div>
<p>So, if we have something like <b>printf &#8216;\e[01;33m&#8217;</b> it means enter bold and color yellow, according to the listing above.</p>
<div class="subtitle">What about &#8216;export&#8217;?</div>
<p><b>export</b> is a Bash built-in used to assign values to variables in such a manner that any subsequent application that runs in that shell will be aware of the variable&#8217;s value. If, for example, we would simply assign a value to a variable, say <b>MYVAR=&#8221;this is my variable&#8221;</b> and we would then issue <b>echo $MYVAR</b>, we would see that the variable&#8217;s value will be printed. However, try to make a simple script which would echo it, for example:</p>
<div class="code">
#!/bin/bash</p>
<p>echo $MYVAR
</p></div>
<p>And then run it e.g. <b>bash myscript.sh</b> &#8211; you will see that the value is lost, not visible in the script. So this is where <b>export</b> is useful, because it will make any further script or application &#8220;see&#8221; the variable. When we invoke the <b>man</b> command, it will need to see the values for our LESS_TERMCAP variables.</p>
<div class="subtitle">More color schemes</div>
<p>Here is another color scheme:</p>
<div class="code">
export LESS_TERMCAP_mb=$(printf &#8216;\e[01;31m&#8217;) # enter blinking mode<br />
export LESS_TERMCAP_md=$(printf &#8216;\e[01;38;5;75m&#8217;) # enter double-bright mode<br />
export LESS_TERMCAP_me=$(printf &#8216;\e[0m&#8217;) # turn off all appearance modes (mb, md, so, us)<br />
export LESS_TERMCAP_se=$(printf &#8216;\e[0m&#8217;) # leave standout mode<br />
export LESS_TERMCAP_so=$(printf &#8216;\e[01;33m&#8217;) # enter standout mode<br />
export LESS_TERMCAP_ue=$(printf &#8216;\e[0m&#8217;) # leave underline mode<br />
export LESS_TERMCAP_us=$(printf &#8216;\e[04;38;5;200m&#8217;) # enter underline mode
</div>
<div class="subtitle">References</div>
<ul>
<li><a href="http://www.ibm.com/developerworks/linux/library/l-bash/index.html">http://www.ibm.com/developerworks/linux/library/l-bash/index.html</a>
<li><a href="en.wikipedia.org/wiki/ANSI_escape_code">en.wikipedia.org/wiki/ANSI_escape_code</a>
<li><a href="http://www.gnu.org/software/termutils/manual/termcap-1.3/html_mono/termcap.html">http://www.gnu.org/software/termutils/manual/termcap-1.3/html_mono/termcap.html</a>
<li><a href="https://wiki.archlinux.org/index.php/Man_Page">https://wiki.archlinux.org/index.php/Man_Page</a>
<li><a href="http://tips4linux.com/color-man-pages-in-linux/">http://tips4linux.com/color-man-pages-in-linux/</a>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.tuxarena.com/2012/04/tutorial-colored-man-pages-how-it-works/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Tutorial: Using the &#8216;find&#8217; Command</title>
		<link>http://www.tuxarena.com/2012/03/tutorial-using-the-find-command/</link>
		<comments>http://www.tuxarena.com/2012/03/tutorial-using-the-find-command/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 16:05:14 +0000</pubDate>
		<dc:creator>Craciun Dan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.tuxarena.com/?p=2040</guid>
		<description><![CDATA[GNU find is a powerful command-line utility that lets you search for files and folders in a hierarchical tree directory structure. It is the backend for all those utilities out there like the graphical searching in KDE or GNOME. However, find can be a little hard to handle at first by beginners. In this tutorial [...]]]></description>
				<content:encoded><![CDATA[<p>GNU find is a powerful command-line utility that lets you search for files and folders in a hierarchical tree directory structure. It is the backend for all those utilities out there like the graphical searching in KDE or GNOME. However, find can be a little hard to handle at first by beginners. In this tutorial I will try to explain some of the capabilities of find, show some useful one-liners and provide more explanations regarding this command.</p>
<p><span id="more-2040"></span></p>
<p>In this tutorial I will start from the basic ways of using find and head up into showing more complicated (but very useful) ways of getting the most out of it, in order to search and display exactly the results that you are looking for. The version of find that I currently have installed is 4.4.2, as it comes with Ubuntu 12.04 Precise Pangolin, and Bash 4.2.20 (older versions should work without problem too). Special thanks go to http://www.commandlinefu.com/ for some really great one-liners.</p>
<p>If you&#8217;re not familiar with the terminal, command-line or Linux in general I suggest you read my introductory tutorial here: <a href="http://www.tuxarena.com/static/intro_linux_cli.php">Introduction to Linux Command-Line for Beginners</a>.</p>
<div class="subtitle">The Basics</div>
<p>The simplest way of using find is by typying it in a terminal:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find
</textarea></pre>
<p>This will list all the files and folders (including hidden ones and their sub-files and sub-folders) in the current directory, following the whole hierarchical structure. This will usually generate a long list of files and doesn&#8217;t seem to give us much. It&#8217;s exactly the same as:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find .
</textarea></pre>
<p>Where . is the currently working directory. This will list all the files and folders in the currently working directory.</p>
<p>It&#8217;s probably best to use a new folder somewhere in the file system to see this in effect, a folder which doesn&#8217;t have many sub-folders and files.</p>
<p>Moving on, let&#8217;s search for all the files that include the name profile in their filename:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find . -name *profile*
</textarea></pre>
<p><b>*</b> is a wildcard that replaces any number of characters or no character. The above command searches in the current folder for the name <b>*profile*</b>.</p>
<pre><textarea cols="78" rows="1" wrap="off">
find /usr/share -name FreeSans*
</textarea></pre>
<p>This will search inside <b>/usr/share</b> for all the files that start with FreeSans (and end in whatever characters e.g. FreeSans.ttf). I recommend using double quotes around the pattern to search for e.g. <b>find . -name &#8220;.bash*&#8221;</b>.</p>
<p>Another example:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find /usr/share -name FreeSans* | grep Oblique
</textarea></pre>
<p>So now you know how to search for a certain filename in a specific location.</p>
<div class="subtitle">Uppercase/Lowercase</div>
<p>Sometimes you need to ignore uppercase and lowercase and just search for text by ignoring case-sensitive. We&#8217;ll to this just by replacing <b>-name</b> with <b>-iname</b>:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find /usr/share -iname FREESANS*
</textarea></pre>
<div class="subtitle">Date</div>
<pre><textarea cols="78" rows="1" wrap="off">
find . -mtime +3 -iname *somefile*
</textarea></pre>
<p>This will search for files that were created earlier than 3 days ago.</p>
<div class="subtitle">Get only the filename instead of whole path to the file</div>
<p>find will return the whole path to the files that match the search pattern, so in order to get only the filename you can use the <b>printf</b> argument:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find /usr/bin -name "alsa*"
</textarea></pre>
<p>To get only the filename, use:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find /usr/bin -name "alsa*" -printf "%f\n"
</textarea></pre>
<div class="subtitle">By size</div>
<p>To search for files by size, use the <b>-size</b> argument, for example:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find /usr -size +500k -name "*png"
</textarea></pre>
<p>This will search inside /usr for files which are equal to or larger than 500 KB and are ending in png. Another example:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find /usr -size +1M -name "*png"
</textarea></pre>
<p>Which will search for files which are bigger than 1 MB in size. Instead of the plus sign, you could use minus in order to search for files that are smaller than a specified size:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find /usr -size -10c -name "*png"
</textarea></pre>
<p>The -10c specifier tells find to only display files which are smaller than 10 bytes. Don&#8217;t forget the + or &#8211; preceding the desired filesize.</p>
<div class="subtitle">Automatically list details about the found files</div>
<p>You could use a pipe and the xargs command for this:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find /usr/lib -size +2M -name "*.so" | xargs ls -lh
</textarea></pre>
<p>Notice that this will list the files in the current directory if find returns no file.</p>
<div class="subtitle">Searching for files than contain specific text</div>
<p>This is probably one of the most useful ways to search for some file which name you&#8217;ve forgot but you know some of the text it contains inside.</p>
<pre><textarea cols="78" rows="1" wrap="off">
find . -name "*bash*" -exec grep -l "aliases" {} +
</textarea></pre>
<p>This will search in all the files that contain the patter bash for the word <b>aliases</b>. Those files that contain this pattern will be printed out.</p>
<div class="subtitle">Some useful one-liners</div>
<p>Find top 20 largest files:</p>
<pre><textarea cols="78" rows="1" wrap="off">
find . -type f -print0 | xargs -0 du -h | sort -hr | head -20
</textarea></pre>
<div class="subtitle">References</div>
<p>Special thanks go to <a href="http://www.commandlinefu.com/">http://www.commandlinefu.com/</a> and the following articles:</p>
<ul>
<li><a href="https://www.linux.com/learn/tutorials/316404-10-tips-for-using-gnu-find">https://www.linux.com/learn/tutorials/316404-10-tips-for-using-gnu-find</a>
<li><a href="http://www.ibm.com/developerworks/aix/library/au-unix-find.html">http://www.ibm.com/developerworks/aix/library/au-unix-find.html</a>
<li><a href="http://www.linux.ie/newusers/beginners-linux-guide/find.php">http://www.linux.ie/newusers/beginners-linux-guide/find.php</a>
<li><a href="http://www.cyberciti.biz/faq/howto-recursively-search-all-files-for-words/">http://www.cyberciti.biz/faq/howto-recursively-search-all-files-for-words/</a>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.tuxarena.com/2012/03/tutorial-using-the-find-command/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>GNOME 3: How to Change the Wallpaper from Command-Line</title>
		<link>http://www.tuxarena.com/2011/12/gnome-3-how-to-change-the-wallpaper-from-command-line/</link>
		<comments>http://www.tuxarena.com/2011/12/gnome-3-how-to-change-the-wallpaper-from-command-line/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 06:10:20 +0000</pubDate>
		<dc:creator>Craciun Dan</dc:creator>
				<category><![CDATA[GNOME]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.tuxarena.com/?p=1777</guid>
		<description><![CDATA[The older way of doing this, with gconftool-2 doesn&#8217;t seem to work anymore in GNOME 3 &#8211; used to be something like: gconftool-2 &#8211;type string &#8211;set /desktop/gnome/background/picture_filename &#8220;/full/path/to/file.png&#8221;. However, there is still possible to change the background image, by using the gsettings tool instead. You will need the libglib2.0-bin package, which is probably already installed [...]]]></description>
				<content:encoded><![CDATA[<p>The older way of doing this, with gconftool-2 doesn&#8217;t seem to work anymore in GNOME 3 &#8211; used to be something like: <b>gconftool-2 &#8211;type string &#8211;set /desktop/gnome/background/picture_filename &#8220;/full/path/to/file.png&#8221;</b>.</p>
<p>However, there is still possible to change the background image, by using the <b>gsettings</b> tool instead. You will need the <b>libglib2.0-bin</b> package, which is probably already installed on your system. To change the background, use a command like the following:</p>
<p><span id="more-1777"></span></p>
<pre><textarea cols="72" rows="2" wrap="off">
gsettings set org.gnome.desktop.background picture-uri file:///$PATH_TO_FILE
</textarea></pre>
<p>Where you replace $PATH_TO_FILE with the full path to the file, e.g.:</p>
<pre><textarea cols="72" rows="2" wrap="off">
gsettings set org.gnome.desktop.background picture-uri file:////home/user/image.jpg
</textarea></pre>
<p>Here&#8217;s a small script for automatically changing the wallpaper every 60 seconds (just change the <b>sleep 60</b> value to another value, in seconds). Although not very elegant, it will do the job (please suggest something better here):</p>
<pre><textarea cols="72" rows="10" wrap="off">
#!/bin/bash

while [[ 1 -eq 1 ]]; do
for i in $(echo /usr/share/backgrounds/*.jpg); do
        echo $i
        gsettings set org.gnome.desktop.background picture-uri file:///${i}
        sleep 60;
done
done
</textarea></pre>
<p>This script will automatically cycle between all the .jpg wallpapers in the directory /usr/share/backgrounds/. Just replace it with another directory if needed.</p>
<p><i>Special thanks for <a href="http://ubuntuforums.org/showthread.php?t=955149">this</a> and <a href="http://old.nabble.com/Gnome-3%3A-change-wallpaper-via-commandline-td32219791.html">this</a>.</i></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tuxarena.com/2011/12/gnome-3-how-to-change-the-wallpaper-from-command-line/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>IM from the Terminal: 2 Great Applications</title>
		<link>http://www.tuxarena.com/2011/11/im-from-the-terminal-2-great-applications/</link>
		<comments>http://www.tuxarena.com/2011/11/im-from-the-terminal-2-great-applications/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 10:23:36 +0000</pubDate>
		<dc:creator>Craciun Dan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[centerim]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[finch]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.tuxarena.com/?p=1092</guid>
		<description><![CDATA[This article is about two popular IM (Instant Messaging) clients that can be used in a terminal instead of a graphical environment. Both have advanced features and are based on the ncurses library. Finch Based on libpurple, Finch is developed by the Pidgin project, and it pretty much supports the same features of it, except [...]]]></description>
				<content:encoded><![CDATA[<p>This article is about two popular IM (Instant Messaging) clients that can be used in a terminal instead of a graphical environment. Both have advanced features and are based on the ncurses library.</p>
<p><strong>Finch</strong><br />
Based on libpurple, <a href="http://www.pidgin.im/">Finch</a> is developed by the Pidgin project, and it pretty much supports the same features of it, except for the graphical part, of course. There are many chat protocols which it supports, including AIM, IRC, MySpaceIM, WLM, SILC, Yahoo! or ICQ.</p>
<p><span id="more-1092"></span></p>
<p>Finch allows you to change the status, report idle time based on keyboard activity or turn it off, it supports plugins, file transfers, sounds, status messages, chat timestamps, customization of the contact list. In addition, it also lets you change and remembers the position and size of the windows.</p>
<p>The very nice thing is that once you get to know how to use it, Finch becomes a great tool for getting the job done.</p>
<p>Finch plugins<br />
<a href="http://www.tuxarena.com/wp-content/uploads/2011/11/finch_plugins.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/11/finch_plugins-640x467.png" alt="" title="finch_plugins" width="640" height="467" class="aligncenter size-large wp-image-1631" /></a></p>
<p>Several plugins can be configured and some of the plugins that come bundled with Finch by default include:</p>
<ul>
<li>Autoaccept &#8211; auto-accept file transfer requests from selected users
<li>Buddy Notes &#8211; store buddy notes
<li>Grouping &#8211; provides alternate ways to group buddies in the contact list
<li>Join/Part Hiding &#8211; hide join/part messages in large rooms
</ul>
<p>For using Finch you can find a comprehensive guide that I wrote a while ago following <a href="http://tuxarena.blogspot.com/2010/09/guide-to-using-finch-terminal-based.html">this tutorial</a>. <a href="http://developer.pidgin.im/wiki/Using%20Finch">This page</a> on the official homepage may be of help too.</p>
<p>Some of the basic keyboard shortcuts include Alt+Q to quit, Alt+A to open the options window, Alt+N to switch to the next window, Alt+C to close current window, Alt+R to resize a window, Alt+M to move a window, Tab to switch through options and Space to tick/untick an option.</p>
<p><strong>CenterIM</strong><br />
<a href="http://www.centerim.org/index.php/Main_Page">CenterIM</a> is another powerful IM client which is being actively developed, and supports the following protocols: ICQ, Yahoo!, WLM, AIM, IRC, Jabber, Gadu-Gadu and LJ.</p>
<p>When it starts, CenterIM shows a configuration window with various general options that can be changed or toggled by pressing Enter. The window that follows allows you to set up accounts for all the supported protocols.</p>
<p>CenterIM provides a default interface with the contact list to the left, and the discussion windows to the right. The online contacts are separated from the offline ones. I tried it using the Yahoo! protocol, and the contact groups seem to be ignored. After writing the text you want to send, press Ctrl+X to send it. Use the Escape key to switch to the contact list and Q to quit CenterIM.</p>
<p>Configuration window<br />
<a href="http://www.tuxarena.com/wp-content/uploads/2011/11/centerim_conf_01.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/11/centerim_conf_01-640x409.png" alt="" title="centerim_conf_01" width="640" height="409" class="aligncenter size-large wp-image-1632" /></a></p>
<p>CenterIM supports aways messages, anti-spam features, windows size configuration, keyboard binding, logs, aways system.</p>
<p>One feature which I found to be great is the possibility to enable Emacs/Vi keyboard bindings in the text editor, this making it easy for a person who is used to one of these ways of text input.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tuxarena.com/2011/11/im-from-the-terminal-2-great-applications/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>10 More Great Tools for the Terminal</title>
		<link>http://www.tuxarena.com/2011/06/10-more-great-tools-for-the-terminal/</link>
		<comments>http://www.tuxarena.com/2011/06/10-more-great-tools-for-the-terminal/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 18:12:58 +0000</pubDate>
		<dc:creator>Craciun Dan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[command-line]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[rtorrent]]></category>
		<category><![CDATA[telnet]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.tuxarena.com/?p=1299</guid>
		<description><![CDATA[First of all I&#8217;d like to thank TuxArena&#8217;s readers for giving good feedback in the first part of this series, which overviews 15 of the tools I consider particularly useful in a console. This article overviews 10 more such tools, and most of them were suggested by you. Screenshots included. telnet telnet is a well-known [...]]]></description>
				<content:encoded><![CDATA[<p>First of all I&#8217;d like to thank TuxArena&#8217;s readers for giving good feedback in the first part of this series, which <a href="http://www.tuxarena.com/?p=1084">overviews 15 of the tools</a> I consider particularly useful in a console. This article overviews 10 more such tools, and most of them were suggested by you. Screenshots included.</p>
<p><strong>telnet</strong><br />
telnet is a well-known command-line tool which uses sockets to open a TCP connection to the specified hostname and port. telnet can be primarily used for non-secure connections to connect to a HTTP server and get a file or to an IRC server for example. Escape character in telnet is <strong>^]</strong> (press <b>Ctrl+]</b>)<br />
<a href="http://www.telnet.org/">Homepage</a></p>
<p><span id="more-1299"></span><br />
<a href="http://www.tuxarena.com/?attachment_id=1381" rel="attachment wp-att-1381"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/telnet-640x347.png" alt="" title="telnet" width="640" height="347" class="aligncenter size-large wp-image-1381" /></a></p>
<p><strong>rtorrent</strong><br />
I&#8217;ve never used a BitTorrent client in command-line mode (KTorrent is my application of choice), so rtorrent was something new to me. However I heard about rtorrent many times and decided to take it for a spin. The only reason for choosing it over ctorrent was that everybody mentions it when it comes to command-line tools. Well, after starting it I had trouble quitting it (:q, q, ^X followed by quit or exit didn&#8217;t seem to work), so I had to Google for it. The command for <a href="http://libtorrent.rakshasa.no/wiki/RTorrentUserGuide">exiting rtorrent is ^Q</a> (Ctrl+Q). rtorrent features pausing/resuming torrents, and it features most of the features found in graphical clients like Deluge or KTorrent.<br />
<a href="http://libtorrent.rakshasa.no/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/?attachment_id=1382" rel="attachment wp-att-1382"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/rtorrent-640x378.png" alt="" title="rtorrent" width="640" height="378" class="aligncenter size-large wp-image-1382" /></a></p>
<p><strong>vifm</strong><br />
vifm is a twin-panel file manager using ncurses and Vi keyboard shortcuts. I recommend it to those who are used to work in Vi (this is why I recommend CMus for them too, because of the keyboard shortcuts).<br />
<a href="http://vifm.sourceforge.net/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/?attachment_id=1386" rel="attachment wp-att-1386"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/vifm1-640x375.png" alt="" title="vifm" width="640" height="375" class="aligncenter size-large wp-image-1386" /></a></p>
<p><strong>emacs</strong><br />
Yes, Emacs can be run in command-line mode too, if it is invoked with <b>emacs &#8211;no-window-system</b>, or with <b>emacs &#8211;no-window</b>, or just with <b>emacs -nw</b>. For those of you don&#8217;t know what Emacs is: well, first of all it is a very powerful IDE (Integrated Development Environment) written in Elisp (Emacs Lips, a List dialect). It features syntax highlighting, indentation, so-called &#8220;modes&#8221; for various languages (including C or Java modes). Emacs is extremely flexible, comes with a huge number of configuration options (which can be used either from within the application or in the ~/.emacs configuration file), and it can be expanded using Lisp. Except for being an IDE, it also provides email client, facilities to use it as a file manager, IRC access, and much, much more. As they describe it on the website, Emacs can be look at just as it would&#8217;ve been an operating system.<br />
<a href="http://www.gnu.org/software/emacs/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/?attachment_id=1387" rel="attachment wp-att-1387"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/vifm2-640x375.png" alt="" title="vifm" width="640" height="375" class="aligncenter size-large wp-image-1387" /></a></p>
<p><strong>mutt</strong><br />
mutt is a pretty powerful command-line email client. It has support for color terminals, MIME, OpenPGP.<br />
<a href="http://www.mutt.org/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/?attachment_id=1388" rel="attachment wp-att-1388"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/mutt-640x377.png" alt="" title="mutt" width="640" height="377" class="aligncenter size-large wp-image-1388" /></a></p>
<p><strong>iptraf</strong><br />
iptraf is a network interface monitoring tool. It displays various informations on the incoming/outgoing traffic on the installed networking interfaces, statistics and general info.<br />
<a href="http://iptraf.seul.org/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/?attachment_id=1390" rel="attachment wp-att-1390"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/iptraf1-640x381.png" alt="" title="iptraf" width="640" height="381" class="aligncenter size-large wp-image-1390" /></a></p>
<p><a href="http://www.tuxarena.com/?attachment_id=1391" rel="attachment wp-att-1391"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/iptraf02-640x383.png" alt="" title="iptraf02" width="640" height="383" class="aligncenter size-large wp-image-1391" /></a></p>
<p><a href="http://www.tuxarena.com/?attachment_id=1392" rel="attachment wp-att-1392"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/iptraf03-640x379.png" alt="" title="iptraf03" width="640" height="379" class="aligncenter size-large wp-image-1392" /></a></p>
<p><strong>screen</strong><br />
GNU Screen is used to run multiple programs in a terminal, without the need to open several terminal tabs, so it would be a perfect fit to run in the F1-F6 classic ttys. Screen creates several virtual terminals and allows you to customize and switch between them. This tool is definitely a must-have for any respectable power user.<br />
<a href="http://www.gnu.org/software/screen/">Homepage</a></p>
<p><strong>tail</strong><br />
tail is a simple tool that will display by default the last 10 lines in a text file. By invoking it with a number parameter, it will display n lines starting at the end of the file (e.g. <b>tail -20</b> to display the last 20 lines in a file). tail is useful to see the output of long logs.<br />
<a href="http://www.gnu.org/software/coreutils/">Homepage</a></p>
<p><strong>wget</strong><br />
wget is the &#8220;de-facto&#8221; command-line utility to download files over Internet, supporting the following protocols: HTTP, FTP, HTTPS and HTTP through proxies. It provides for many options, including quiet mode, verbose or non-verbose mode, resume downloading an incomplete file, set the number of retries, and these are not the only ones.<br />
<a href="http://www.gnu.org/software/wget/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/?attachment_id=1393" rel="attachment wp-att-1393"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/wget-640x151.png" alt="" title="wget" width="640" height="151" class="aligncenter size-large wp-image-1393" /></a></p>
<p><strong>hnb</strong><br />
hnb stands for Hierarchical Notebook, it is written using ncurses, and it allows you to keep notes in a console.<br />
<a href="http://hnb.sourceforge.net/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/?attachment_id=1394" rel="attachment wp-att-1394"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/hnb-640x381.png" alt="" title="hnb" width="640" height="381" class="aligncenter size-large wp-image-1394" /></a></p>
<p>In the next article in these series I will talk about <strong>ssh</strong>, <strong>scp</strong> and several other powerful and useful tools.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tuxarena.com/2011/06/10-more-great-tools-for-the-terminal/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>15 Great Tools for the Terminal</title>
		<link>http://www.tuxarena.com/2011/06/15-great-tools-for-the-terminal/</link>
		<comments>http://www.tuxarena.com/2011/06/15-great-tools-for-the-terminal/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 02:34:47 +0000</pubDate>
		<dc:creator>Craciun Dan</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[cmus]]></category>
		<category><![CDATA[finch]]></category>
		<category><![CDATA[irssi]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://www.tuxarena.com/?p=1084</guid>
		<description><![CDATA[cmus cmus is a music player that I admire the most when it comes to command-line because it&#8217;s really powerful and has a lot of nice features. It is built with ncurses and therefore providing a text-user interface. cmus is indeed feature-rich, with several view modes and Last.fm song submission support via scripts. It supports [...]]]></description>
				<content:encoded><![CDATA[<p><strong>cmus</strong><br />
cmus is a music player that I admire the most when it comes to command-line because it&#8217;s really powerful and has a lot of nice features. It is built with ncurses and therefore providing a text-user interface. cmus is indeed feature-rich, with several view modes and Last.fm song submission support via scripts. It supports Vi-like commands and auto-completion with Tab too. Recently I wrote a full guide on how to use cmus, you can read it <a href="http://www.tuxarena.com/static/cmus_guide.php">here</a>.<br />
<a href="http://cmus.sourceforge.net/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/wp-content/uploads/2011/06/cmus.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/cmus-300x179.png" alt="" title="cmus" width="300" height="179" class="alignleft size-medium wp-image-1303" /></a></p>
<p><span id="more-1084"></span><br />
<strong>finch</strong><br />
Finch comes bundled with Pidgin, the popular IM client. Finch offers the same functionality that Pidgin offers, only that it does it in a terminal by using the ncurses library. It supports IM protocols like Yahoo, Google Talk, XMPP (Facebook), WLM (Windows Live Messenger) and more. A while ago I put up a detailed guide to Finch, which you can read <a href="http://tuxarena.blogspot.com/2010/09/guide-to-using-finch-terminal-based.html">here</a>.<br />
<a href="http://www.pidgin.im/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/wp-content/uploads/2011/06/finch.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/finch-300x114.png" alt="" title="finch" width="300" height="114" class="alignleft size-medium wp-image-1304" /></a></p>
<p><strong>htop</strong><br />
htop is an interactive process viewer tool using ncurses which has the great benefit that it allows to scroll up and down the list of processes, and it also uses graphs and colors. I think all these make htop a real gem for the Linux user.<br />
<a href="http://htop.sourceforge.net/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/wp-content/uploads/2011/06/htop.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/htop-300x176.png" alt="" title="htop" width="300" height="176" class="alignleft size-medium wp-image-1305" /></a></p>
<p><strong>irssi</strong><br />
Very powerful IRC (Internet Relay Chat) client with an ncurses-based interface, implements multi-server support, can be expanded with Perl scripts, supports themes, DCC chat and every other possible feature IRC servers allow.<br />
<a href="http://www.irssi.org/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/wp-content/uploads/2011/06/irssi.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/irssi-300x179.png" alt="" title="irssi" width="300" height="179" class="alignleft size-medium wp-image-1306" /></a></p>
<p><strong>mc</strong><br />
Midnight Commander is the famous twin-panel file manager for the Linux terminal, also based on ncurses and with lots of features.<br />
<a href="http://www.midnight-commander.org/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/wp-content/uploads/2011/06/mc.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/mc-300x178.png" alt="" title="mc" width="300" height="178" class="alignleft size-medium wp-image-1308" /></a></p>
<p><strong>lynx</strong><br />
lynx is a popular web browser for the terminal. It supports protocols like HTTP, FTP or Gopher.<br />
<a href="http://lynx.isc.org/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/wp-content/uploads/2011/06/lynx.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/lynx-300x177.png" alt="" title="lynx" width="300" height="177" class="alignleft size-medium wp-image-1309" /></a></p>
<p><strong>gzip</strong><br />
gzip is a command-line tool for compressing and uncompressing files. All the files that end in a .tar.gz extension are archived with tar and compressed with gzip.<br />
<a href="http://www.gzip.org/">Homepage</a></p>
<p><strong>bzip2</strong><br />
Same as gzip, bzip2 is a data compressor which takes a longer time to compress and uncompress files, but it also provides a more efficient compression algorithm which results in smaller files.<br />
<a href="http://www.bzip.org/">Homepage</a></p>
<p><strong>tar</strong><br />
This tool is used to create archived files, and will also work in conjunction with gzip or bzip2. The command to compress a file or folder to gzip is (what follows after # is a comment):</p>
<pre><textarea cols="78" rows="4" wrap="off">
tar -czf output_file.tar.gz input_file # compresses the file input_file into output_file.tar.gz
tar -czf output_file.tar.gz input_dir # compresses the directory input_dir to output_file.tar.gz
tar -czf output_file.tar.gz file1 file2 file3 # compresses file1, file2 and file3 to output_file.tar.gz
</textarea></pre>
<p>The <b>c</b> argument means compress, the <b>z</b> specifies the type of file to create (gzip file in this case), and <b>f</b> specifies the output file name. The command to uncompress a .tar.gz file:</p>
<pre><textarea cols="78" rows="2" wrap="off">
tar -xzf input_file.tar.gz
</textarea></pre>
<p>This will extract the contents of input_file.tar.gz to the current working directory. Here are the commands for bzip2:</p>
<pre><textarea cols="78" rows="3" wrap="off">
tar -cjf output_file.tar.bz2 input_file # compress input_file to output_file.tar.bz2
tar -xjf input_file.tar.bz2 # will extract input_file.tar.bz2 to the current directory
</textarea></pre>
<p><a href="http://www.gnu.org/software/tar/">Homepage</a></p>
<p><strong>aaxine</strong><br />
aaxine is a video player for console based on <a href="http://www.xine-project.org/home">xine-lib</a> multimedia player, using ASCII characters for video output. In Ubuntu it is provided by the <b>xine-console</b> package.<br />
<a href="http://www.xine-project.org/home">Homepage</a></p>
<p><a href="http://www.tuxarena.com/wp-content/uploads/2011/06/aaxine.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/aaxine-300x194.png" alt="" title="aaxine" width="300" height="194" class="alignleft size-medium wp-image-1310" /></a><br />
&#8230;it&#8217;s Big Buck Bunny by the way</p>
<p><strong>aview</strong><br />
This tool allows to view images as ASCII art. It only supports the following formats, which are either in binary form or ASCII plain text: <a href="http://netpbm.sourceforge.net/">PNM, PGM, PBM, PPM</a>. It also supports FLI and FLC video formats.<br />
<a href="http://aa-project.sourceforge.net/aview/">Homepage</a></p>
<p><strong>mencoder</strong><br />
mencoder is a powerful video encoder and decoder included in MPlayer and can convert between various video files.<br />
<a href="http://www.mplayerhq.hu/design7/news.html">Homepage</a></p>
<p><strong>ffmpeg</strong><br />
Using libavcodec, ffmpeg is yet another powerful tool to encode/decode, record and stream video files.<br />
<a href="http://www.ffmpeg.org/">Homepage</a></p>
<p><strong>convert</strong><br />
Included in ImageMagick, convert is a tool that can convert between image formats, and also apply various effects to images or edit certain aspects, including resizing, cropping, blur or dither effects. convert is also used on web servers for image processing.<br />
<a href="http://www.imagemagick.org/script/index.php">Homepage</a></p>
<p><strong>moc</strong><br />
moc (music on console) is yet another ncurses-based music player for the terminal which plays formats like Ogg Vorbis, FLAC, MP3, WAV or WMA. It also supports themes and searching for files.<br />
<a href="http://moc.daper.net/">Homepage</a></p>
<p><a href="http://www.tuxarena.com/wp-content/uploads/2011/06/moc.png"><img src="http://www.tuxarena.com/wp-content/uploads/2011/06/moc-300x179.png" alt="" title="moc" width="300" height="179" class="alignleft size-medium wp-image-1311" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tuxarena.com/2011/06/15-great-tools-for-the-terminal/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Second Free PDF Guide Is Here!</title>
		<link>http://www.tuxarena.com/2010/12/second-free-pdf-guide-is-here/</link>
		<comments>http://www.tuxarena.com/2010/12/second-free-pdf-guide-is-here/#comments</comments>
		<pubDate>Mon, 20 Dec 2010 15:28:03 +0000</pubDate>
		<dc:creator>Craciun Dan</dc:creator>
				<category><![CDATA[Ebooks]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[music players]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.tuxarena.com/?p=375</guid>
		<description><![CDATA[TuxArena is proud to announce the second free PDF giveaway: Command-Line Guide to Audio Files in Ubuntu. You can read it online here or download the PDF from here. The guide explains the basics of manipulating audio files in command-line mode, as well as converting to and from various audio formats, with an accent on [...]]]></description>
				<content:encoded><![CDATA[<p>TuxArena is proud to announce the second free PDF giveaway: <strong>Command-Line Guide to Audio Files in Ubuntu</strong>. You can read it online <a href="http://www.tuxarena.com/static/cli_audio_guide.php">here</a> or download the PDF from <a href="http://www.tuxarena.com/static/tuxarena_cli_audio_guide.pdf">here</a>.</p>
<p>The guide explains the basics of manipulating audio files in command-line mode, as well as converting to and from various audio formats, with an accent on the free formats FLAC and Ogg Vorbis. Here are the topics covered:</p>
<p><span id="more-375"></span><br />
Introduction to Audio Manipulation on Linux<br />
The Setup: Tools That We Need<br />
Converting FLAC to WAV and Vice-Versa<br />
Converting FLAC or WAV to Ogg Vorbis<br />
Editing Ogg Vorbis Tags<br />
Converting FLAC or WAV to MP3<br />
Ripping Audio CDs<br />
Split FLAC, WAV or APE With a CUE File<br />
Converting WMA to Ogg Vorbis<br />
Converting APE to Ogg Vorbis or MP3<br />
Converting AC3 to WAV Using MPlayer<br />
Music Players</p>
<p>Please feel free to use the comments below for suggestions or corrections and help me improve this guide.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tuxarena.com/2010/12/second-free-pdf-guide-is-here/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>TuxArena Free PDF Guide! Introduction to Linux Command-Line for Beginners</title>
		<link>http://www.tuxarena.com/2010/12/tuxarena-free-pdf-guide-introduction-to-linux-command-line-for-beginners/</link>
		<comments>http://www.tuxarena.com/2010/12/tuxarena-free-pdf-guide-introduction-to-linux-command-line-for-beginners/#comments</comments>
		<pubDate>Sun, 19 Dec 2010 18:42:03 +0000</pubDate>
		<dc:creator>Craciun Dan</dc:creator>
				<category><![CDATA[Ebooks]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.tuxarena.com/?p=338</guid>
		<description><![CDATA[The first TuxArena PDF ebook &#8220;Introduction to Linux Command-Line for Beginners&#8221; is now available completely free as a Christmas gift! You can read it online here or download the PDF version. The guide covers the following topics: What Is Linux? Basic Commands and Concepts Moving Around More Useful CLI Commands The Power of the Shell [...]]]></description>
				<content:encoded><![CDATA[<p>The first TuxArena PDF ebook &#8220;<strong>Introduction to Linux Command-Line for Beginners</strong>&#8221; is now available <strong>completely free</strong> as a Christmas gift! You can <a href="http://www.tuxarena.com/static/intro_linux_cli.php">read it online here</a> or <a href="http://www.tuxarena.com/static/tuxarena_intro_linux_cli.pdf">download the PDF version</a>.</p>
<p>The guide covers the following topics:</p>
<p><span id="more-338"></span></p>
<p>What Is Linux?<br />
Basic Commands and Concepts<br />
Moving Around<br />
More Useful CLI Commands<br />
The Power of the Shell<br />
Creating and Editing Files<br />
Linux Directory Structure<br />
Environment Variables<br />
Bash built-ins<br />
Pipes and Redirecting Output<br />
Getting Help<br />
Helpful Links &amp; Further Reading</p>
<p>This is the first release so more improvements and corrections will be added, as well as new chapters.</p>
<p>If you have suggestions or corrections to this guide, please feel free to use the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tuxarena.com/2010/12/tuxarena-free-pdf-guide-introduction-to-linux-command-line-for-beginners/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
