<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Cool Command Line Apps for GNU/Linux and other Unix Systems</title>
	<atom:link href="http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/</link>
	<description>Linux, opensource and me</description>
	<lastBuildDate>Wed, 10 Mar 2010 14:37:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ivo Jimenez</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-7209</link>
		<dc:creator>Ivo Jimenez</dc:creator>
		<pubDate>Fri, 11 Dec 2009 16:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-7209</guid>
		<description>Really cool post! Thanks much!

My 2 cents:

To-do / time-management:
  taskwarrior

Music:
  Practical Music Search (mpd client / vim-oriented)
  
Web:
  Vimperator (not really a console app but you can firefox behaves as if it were one!)</description>
		<content:encoded><![CDATA[<p>Really cool post! Thanks much!</p>
<p>My 2 cents:</p>
<p>To-do / time-management:<br />
  taskwarrior</p>
<p>Music:<br />
  Practical Music Search (mpd client / vim-oriented)</p>
<p>Web:<br />
  Vimperator (not really a console app but you can firefox behaves as if it were one!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Delaluna</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-6809</link>
		<dc:creator>Delaluna</dc:creator>
		<pubDate>Wed, 11 Nov 2009 14:58:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-6809</guid>
		<description>Hey ! So cool apps !
A few word about how I use emacs into the terminal :
_ launch emacs -nw (create an alias for this, for example cemacs)
_ minimize it with C-z, allright
_ then you would type &quot;fg %emacs&quot; to re-open it : too long
  so create a keybinding in your .bashrc like &quot;bind -x &#039;&quot;\C-x\C-e&quot;:fg %emacs&#039;&quot;
  So you just have to press C-x-e 
_ be careful of interference problems if you open another emacs instance. So you may want to use emacsclient
cemacs () { #in .bashrc               
 if (ps&#124;grep emacs); then
       cecho $j &quot;Beware, emacs&#039;s already running :)&quot;;
       echo  &quot;let&#039;s open these files in the same session anyway&quot;
      sleep 1
      emacsclient -n $@
      fg %emacs
 else emacs -nw $@
 fi
}
and in your .emacs : 
(server-start)
_ now it&#039;s useful and very powerful !

   Then I use 2 scripts to listen some music with mplayer :
_ to listen in shuffle mode, use these in a script :
find $@ ./ -iname &quot;*.mp3&quot; -o -iname &quot;*.wma&quot; -o -iname &quot;*.ogg&quot; -o -iname &quot;*.m4a&quot; -o -iname &quot;*.wav&quot; \
 &#124;grep -i -v INCOM &gt;my_playlist
mplayer -shuffle -playlist my_playlist

_ and then a customized find function to find and play files quickly in all the subtrees of your dir, but it&#039;s a bit long :p But this is really quicker than GUIs.</description>
		<content:encoded><![CDATA[<p>Hey ! So cool apps !<br />
A few word about how I use emacs into the terminal :<br />
_ launch emacs -nw (create an alias for this, for example cemacs)<br />
_ minimize it with C-z, allright<br />
_ then you would type &#8220;fg %emacs&#8221; to re-open it : too long<br />
  so create a keybinding in your .bashrc like &#8220;bind -x &#8216;&#8221;\C-x\C-e&#8221;:fg %emacs&#8217;&#8221;<br />
  So you just have to press C-x-e<br />
_ be careful of interference problems if you open another emacs instance. So you may want to use emacsclient<br />
cemacs () { #in .bashrc<br />
 if (ps|grep emacs); then<br />
       cecho $j &#8220;Beware, emacs&#8217;s already running <img src='http://www.internetling.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8221;;<br />
       echo  &#8220;let&#8217;s open these files in the same session anyway&#8221;<br />
      sleep 1<br />
      emacsclient -n $@<br />
      fg %emacs<br />
 else emacs -nw $@<br />
 fi<br />
}<br />
and in your .emacs :<br />
(server-start)<br />
_ now it&#8217;s useful and very powerful !</p>
<p>   Then I use 2 scripts to listen some music with mplayer :<br />
_ to listen in shuffle mode, use these in a script :<br />
find $@ ./ -iname &#8220;*.mp3&#8243; -o -iname &#8220;*.wma&#8221; -o -iname &#8220;*.ogg&#8221; -o -iname &#8220;*.m4a&#8221; -o -iname &#8220;*.wav&#8221; \<br />
 |grep -i -v INCOM &gt;my_playlist<br />
mplayer -shuffle -playlist my_playlist</p>
<p>_ and then a customized find function to find and play files quickly in all the subtrees of your dir, but it&#8217;s a bit long :p But this is really quicker than GUIs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: needle</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-5075</link>
		<dc:creator>needle</dc:creator>
		<pubDate>Tue, 05 May 2009 20:07:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-5075</guid>
		<description>here some apps i use some else from you could also find interesting

music related
=============
mpd - music player deamon
mpc - music player console app to send commands to mpd
ncmpc - a basic ncurses based mpd client
ncmpcpp - an enhanced ncurses mpd client written in c++

network mangement related
=========================
lft - layer 4 traceroute, to get every hop on your traceroute
mtr - matt&#039;s traceroute
iftop - another ncurses network meter
ettercap - A suite for man in the middle attacks and network mapping
arping - layer 2 ping for hosts not sending icmp messages.
xprobe -  Active OS fingerprinting tool, very quick.
wavelan - Wireless monitor panel plugin
iptraf - IPTraf is an ncurses-based IP LAN monitor</description>
		<content:encoded><![CDATA[<p>here some apps i use some else from you could also find interesting</p>
<p>music related<br />
=============<br />
mpd &#8211; music player deamon<br />
mpc &#8211; music player console app to send commands to mpd<br />
ncmpc &#8211; a basic ncurses based mpd client<br />
ncmpcpp &#8211; an enhanced ncurses mpd client written in c++</p>
<p>network mangement related<br />
=========================<br />
lft &#8211; layer 4 traceroute, to get every hop on your traceroute<br />
mtr &#8211; matt&#8217;s traceroute<br />
iftop &#8211; another ncurses network meter<br />
ettercap &#8211; A suite for man in the middle attacks and network mapping<br />
arping &#8211; layer 2 ping for hosts not sending icmp messages.<br />
xprobe &#8211;  Active OS fingerprinting tool, very quick.<br />
wavelan &#8211; Wireless monitor panel plugin<br />
iptraf &#8211; IPTraf is an ncurses-based IP LAN monitor</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: marco</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-4927</link>
		<dc:creator>marco</dc:creator>
		<pubDate>Wed, 22 Apr 2009 21:51:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-4927</guid>
		<description>My command line apps:

Mail: Mutt+fetchmail+procmail+nbsmtp+urlview
Web:  ELinks
Download manager: aria2
RSS feed: newsbeuter
Website mirror utility: HTTrack
Notebook: hnb
Text editor: Vim</description>
		<content:encoded><![CDATA[<p>My command line apps:</p>
<p>Mail: Mutt+fetchmail+procmail+nbsmtp+urlview<br />
Web:  ELinks<br />
Download manager: aria2<br />
RSS feed: newsbeuter<br />
Website mirror utility: HTTrack<br />
Notebook: hnb<br />
Text editor: Vim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Merigrime</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-4919</link>
		<dc:creator>Merigrime</dc:creator>
		<pubDate>Wed, 15 Apr 2009 21:51:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-4919</guid>
		<description>emm.. strange )</description>
		<content:encoded><![CDATA[<p>emm.. strange )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suitlara</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-4882</link>
		<dc:creator>suitlara</dc:creator>
		<pubDate>Fri, 03 Apr 2009 23:05:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-4882</guid>
		<description>Ñ…ÐµÑ…. Ð²Ð¾Ñ‚ Ñ‚Ðµ Ñ€Ð°Ð· ...</description>
		<content:encoded><![CDATA[<p>Ñ…ÐµÑ…. Ð²Ð¾Ñ‚ Ñ‚Ðµ Ñ€Ð°Ð· &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Articles Collection of Nov&#8217;08 &#171; Dako-Tux</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-4763</link>
		<dc:creator>Articles Collection of Nov&#8217;08 &#171; Dako-Tux</dc:creator>
		<pubDate>Sat, 07 Mar 2009 04:38:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-4763</guid>
		<description>[...] Cool Command Line Apps for GNU/Linux and other Unix Systems  Possibly related posts: (automatically generated)Articles Collection of Oct&#8217;08HP releases netbook interface for UbuntuReview: Ubuntu&#146;s New &#146;Gutsy Gibbon&#146; Brings Linux Out of the Jungle [...]</description>
		<content:encoded><![CDATA[<p>[...] Cool Command Line Apps for GNU/Linux and other Unix Systems  Possibly related posts: (automatically generated)Articles Collection of Oct&rsquo;08HP releases netbook interface for UbuntuReview: Ubuntu&#8217;s New &#8217;Gutsy Gibbon&#8217; Brings Linux Out of the Jungle [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tec</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-1549</link>
		<dc:creator>Tec</dc:creator>
		<pubDate>Sun, 14 Dec 2008 19:33:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-1549</guid>
		<description>rTorrent looks pretty sweet.</description>
		<content:encoded><![CDATA[<p>rTorrent looks pretty sweet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmed</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-1537</link>
		<dc:creator>Ahmed</dc:creator>
		<pubDate>Thu, 04 Dec 2008 22:28:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-1537</guid>
		<description>Well I definitely use mplayer for all my Music/Video/DVD/Radio/Streaming activities , This Program can do miracles !! I use emacs -nw as an IDE , As a hobbyist programmer i spend 90 % of my computer non internet time at the CLI , for the mere fact that it is A LOT faster/ less resource eater Than any GUIs!</description>
		<content:encoded><![CDATA[<p>Well I definitely use mplayer for all my Music/Video/DVD/Radio/Streaming activities , This Program can do miracles !! I use emacs -nw as an IDE , As a hobbyist programmer i spend 90 % of my computer non internet time at the CLI , for the mere fact that it is A LOT faster/ less resource eater Than any GUIs!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kinox</title>
		<link>http://www.internetling.com/2008/11/29/cool-command-line-apps-for-gnulinux-and-other-unix-systems/comment-page-1/#comment-1531</link>
		<dc:creator>Kinox</dc:creator>
		<pubDate>Tue, 02 Dec 2008 12:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.internetling.com/?p=152#comment-1531</guid>
		<description>I use and highly recommend tcptrack for monitoring TCP connections on the network.

tcptrack  displays  the  status  of  TCP connections that it sees on a given network interface. tcptrack monitors their state and displays information such as state, source/destination addresses and bandwidth usage in a sorted, updated list very much like the top command.

It&#039;s very useful when you want to find out which connection is hogging all the bandwidth, or want to find out how many connections are there with a specific remote host.

Site @ http://www.rhythm.cx/~steve/devel/tcptrack/</description>
		<content:encoded><![CDATA[<p>I use and highly recommend tcptrack for monitoring TCP connections on the network.</p>
<p>tcptrack  displays  the  status  of  TCP connections that it sees on a given network interface. tcptrack monitors their state and displays information such as state, source/destination addresses and bandwidth usage in a sorted, updated list very much like the top command.</p>
<p>It&#8217;s very useful when you want to find out which connection is hogging all the bandwidth, or want to find out how many connections are there with a specific remote host.</p>
<p>Site @ <a href="http://www.rhythm.cx/~steve/devel/tcptrack/" rel="nofollow">http://www.rhythm.cx/~steve/devel/tcptrack/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->