<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	>
<channel>
	<title>Comments on: Linux Toolbox: alias</title>
	<atom:link href="http://www.coffeemonk.com/2009/05/linux-toolbox-alias/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coffeemonk.com/2009/05/linux-toolbox-alias/</link>
	<description></description>
	<lastBuildDate>Tue, 01 Jun 2010 12:49:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: glebeconnection</title>
		<link>http://www.coffeemonk.com/2009/05/linux-toolbox-alias/comment-page-1/#comment-118</link>
		<dc:creator>glebeconnection</dc:creator>
		<pubDate>Tue, 01 Jun 2010 12:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.coffeemonk.com/?p=96#comment-118</guid>
		<description>to answer my own question: make the file in your bin directory and link to it from /usr/bin and bash will find its name in the path: 
sudo ln -s $HOME/bin/filename /usr/bin/filename </description>
		<content:encoded><![CDATA[<p>to answer my own question: make the file in your bin directory and link to it from /usr/bin and bash will find its name in the path:<br />
sudo ln -s $HOME/bin/filename /usr/bin/filename</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: glebeconnection</title>
		<link>http://www.coffeemonk.com/2009/05/linux-toolbox-alias/comment-page-1/#comment-117</link>
		<dc:creator>glebeconnection</dc:creator>
		<pubDate>Wed, 26 May 2010 12:56:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.coffeemonk.com/?p=96#comment-117</guid>
		<description>hey, surprise, didn&#039;t realise i&#039;d get to comment so easily. but i had a wordpress account...   Good show, launchin a linux toolbox :-)  Like the &quot;hard copy&quot; graphics too... 
 
#run fortune when you want it; mine&#039;s commented out in .bashrc 
alias 4tune=&#039;mint-fortune&#039; 
# edit this .bash_aliases file 
alias bal=&#039;vi $HOME/.bash_aliases&#039; 
# access a pen drive called disk 
alias cdd=&#039;cd /media/disk&#039; 
# customise .bashrc 
alias custom=&#039;vi $HOME/.bashrc&#039; 
# count down the days to World Cup Socccer&#039;s kickoff 
alias fifa=&#039;expr 161 - `date +%j`&#039; 
# switch to GUI to open a file 
alias go=&#039;gnome-open&#039; 
# use GUI to open the home directory; &#039;nautilus $HOME&#039; is slower 
alias home=&#039;gnome-open $HOME&#039; 
# quit firefox without the mouse notching up miles; also clean cache 
alias kf=&#039;killall firefox&#039; 
# logout from the terminal 
lgt=&#039;/usr/bin/gnome-session-save --kill&#039; 
# ls varies among distributions; show hidden files only 
alias lh=&#039;ls -la --ignore=[0-Z]*&#039; 
# open Open Office Word Processor but skip splash screen 
oo=&#039;oowriter -nologo &amp;&#039; 
# see your internet data usage 
alias ppp=&#039;ifconfig &#124; grep --color &#039;RX.by.*\$&#039;&#039; 
# use python to do calculations or serious programming 
alias py=&#039;python&#039; 
# shutdown the computer from where you are 
shut=&#039;sudo shutdown -h now&#039; 
# open another terminal 
alias tt=&#039;gnome-terminal &amp;&#039; 
# today in history and more 
alias today=&#039;grep -h -d skip `date +%m/%d` /usr/share/calendar/*&#039; 
# open an xterm; useful since it looks different 
alias xt=&#039;xterm &amp;&#039; 
 
what i was looking for was a way to run a file as root. eg. source ~/bin/file followed by &quot;file&quot; as root would work but i had sudo in mind. </description>
		<content:encoded><![CDATA[<p>hey, surprise, didn&#39;t realise i&#39;d get to comment so easily. but i had a wordpress account&#8230;   Good show, launchin a linux toolbox :-)  Like the &quot;hard copy&quot; graphics too&#8230; </p>
<p>#run fortune when you want it; mine&#39;s commented out in .bashrc<br />
alias 4tune=&#39;mint-fortune&#39;<br />
# edit this .bash_aliases file<br />
alias bal=&#39;vi $HOME/.bash_aliases&#39;<br />
# access a pen drive called disk<br />
alias cdd=&#39;cd /media/disk&#39;<br />
# customise .bashrc<br />
alias custom=&#39;vi $HOME/.bashrc&#39;<br />
# count down the days to World Cup Socccer&#39;s kickoff<br />
alias fifa=&#39;expr 161 &#8211; `date +%j`&#39;<br />
# switch to GUI to open a file<br />
alias go=&#39;gnome-open&#39;<br />
# use GUI to open the home directory; &#39;nautilus $HOME&#39; is slower<br />
alias home=&#39;gnome-open $HOME&#39;<br />
# quit firefox without the mouse notching up miles; also clean cache<br />
alias kf=&#39;killall firefox&#39;<br />
# logout from the terminal<br />
lgt=&#39;/usr/bin/gnome-session-save &#8211;kill&#39;<br />
# ls varies among distributions; show hidden files only<br />
alias lh=&#39;ls -la &#8211;ignore=[0-Z]*&#39;<br />
# open Open Office Word Processor but skip splash screen<br />
oo=&#39;oowriter -nologo &amp;&#39;<br />
# see your internet data usage<br />
alias ppp=&#39;ifconfig | grep &#8211;color &#39;RX.by.*\$&#39;&#39;<br />
# use python to do calculations or serious programming<br />
alias py=&#39;python&#39;<br />
# shutdown the computer from where you are<br />
shut=&#39;sudo shutdown -h now&#39;<br />
# open another terminal<br />
alias tt=&#39;gnome-terminal &amp;&#39;<br />
# today in history and more<br />
alias today=&#39;grep -h -d skip `date +%m/%d` /usr/share/calendar/*&#39;<br />
# open an xterm; useful since it looks different<br />
alias xt=&#39;xterm &amp;&#39; </p>
<p>what i was looking for was a way to run a file as root. eg. source ~/bin/file followed by &quot;file&quot; as root would work but i had sudo in mind.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Skiz</title>
		<link>http://www.coffeemonk.com/2009/05/linux-toolbox-alias/comment-page-1/#comment-102</link>
		<dc:creator>Skiz</dc:creator>
		<pubDate>Mon, 15 Feb 2010 07:25:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.coffeemonk.com/?p=96#comment-102</guid>
		<description>When dealing with multiple firewalls and you have keys set up, you can initiate all of the hops with something like this to grab a clean mysql console or anything else you need. 
 
alias devel=&#039;ssh -t host1 ssh -t host2 ssh -t host3 mysql -hdbhost&#039; </description>
		<content:encoded><![CDATA[<p>When dealing with multiple firewalls and you have keys set up, you can initiate all of the hops with something like this to grab a clean mysql console or anything else you need. </p>
<p>alias devel=&#8217;ssh -t host1 ssh -t host2 ssh -t host3 mysql -hdbhost&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antelope Love Fan &#8212; This Bash trick will make your brain explode</title>
		<link>http://www.coffeemonk.com/2009/05/linux-toolbox-alias/comment-page-1/#comment-24</link>
		<dc:creator>Antelope Love Fan &#8212; This Bash trick will make your brain explode</dc:creator>
		<pubDate>Wed, 13 May 2009 23:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.coffeemonk.com/?p=96#comment-24</guid>
		<description>[...] am constantly learning new things. For instance, I had never considered combining multiple commands into a single alias [...]</description>
		<content:encoded><![CDATA[<p>[...] am constantly learning new things. For instance, I had never considered combining multiple commands into a single alias [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
