
<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.rajkumar.in/index.php?action=history&amp;feed=atom&amp;title=Bashrc</id>
	<title>Bashrc - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.rajkumar.in/index.php?action=history&amp;feed=atom&amp;title=Bashrc"/>
	<link rel="alternate" type="text/html" href="https://www.rajkumar.in/index.php?title=Bashrc&amp;action=history"/>
	<updated>2026-07-09T20:31:00Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://www.rajkumar.in/index.php?title=Bashrc&amp;diff=4865&amp;oldid=prev</id>
		<title>Raj at 05:20, 28 October 2016</title>
		<link rel="alternate" type="text/html" href="https://www.rajkumar.in/index.php?title=Bashrc&amp;diff=4865&amp;oldid=prev"/>
		<updated>2016-10-28T05:20:27Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw-interface=&quot;&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 05:20, 28 October 2016&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;:&lt;/del&gt;Category:Bioinformatics]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[Category:Bioinformatics]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&amp;lt;pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&amp;lt;pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;# .bashrc# My first Entryecho &amp;#039;		 =============================&amp;#039;echo &amp;#039;		 |Welcome to Processing Server|&amp;#039;echo &amp;#039;		 =============================&amp;#039;cd /data/rajpwd# Source global definitionsif [ -f /etc/bashrc ]; then	. /etc/bashrcfi# ==== RAJ===Enable color support of ls and also add handy aliasesif [ -x /usr/bin/dircolors ]; then    test -r ~/.dircolors &amp;amp;&amp;amp; eval &amp;quot;$(dircolors -b ~/.dircolors)&amp;quot; || eval &amp;quot;$(dircolors -b)&amp;quot;    alias ls=&amp;#039;ls --color=auto&amp;#039;    #alias dir=&amp;#039;dir --color=auto&amp;#039;    #alias vdir=&amp;#039;vdir --color=auto&amp;#039;    alias grep=&amp;#039;grep --color=auto&amp;#039;    alias fgrep=&amp;#039;fgrep --color=auto&amp;#039;    alias egrep=&amp;#039;egrep --color=auto&amp;#039;fiif [ -f ~/.bash_aliases ]; then    . ~/.bash_aliasesfiif [ -f /etc/bash_completion ] &amp;amp;&amp;amp; ! shopt -oq posix; then    . /etc/bash_completionfi# ====== Aliases ==============	alias rm=&amp;#039;rm -i&amp;#039;	alias cp=&amp;#039;cp -i&amp;#039;	alias mv=&amp;#039;mv -i&amp;#039;	alias h=&amp;#039;history&amp;#039;	alias j=&amp;#039;jobs -l&amp;#039;	alias which=&amp;#039;type -a&amp;#039;	alias ..=&amp;#039;cd ..&amp;#039;	alias du=&amp;#039;du -kh&amp;#039;    # Makes a more readable output.	alias df=&amp;#039;df -kTh&amp;#039;	# Add colors for filetype and  human-readable sizes by default on &amp;#039;ls&amp;#039;:	alias ls=&amp;#039;ls -h --color&amp;#039;	alias lx=&amp;#039;ls -lXB&amp;#039;         #  Sort by extension.	alias lk=&amp;#039;ls -lSr&amp;#039;         #  Sort by size, biggest last.	alias lt=&amp;#039;ls -ltr&amp;#039;         #  Sort by date, most recent last.	alias lc=&amp;#039;ls -ltcr&amp;#039;        #  Sort by/show change time,most recent last.	alias lu=&amp;#039;ls -ltur&amp;#039;        #  Sort by/show access time,most recent last.	# List	alias ll=&amp;quot;ls -lhv --group-directories-first&amp;quot;	alias lm=&amp;#039;ll |more&amp;#039;        #  Pipe through &amp;#039;more&amp;#039;	alias lr=&amp;#039;ll -R&amp;#039;           #  Recursive ls.	alias la=&amp;#039;ll -Ah&amp;#039;           #  Show hidden files.	alias l=&amp;#039;ls -CF&amp;#039;	alias tree=&amp;#039;tree -Csuh&amp;#039;    #  Nice alternative to &amp;#039;recursive ls&amp;#039; ...	# Spelling typos - highly personnal and keyboard-dependent :-)	alias xs=&amp;#039;cd&amp;#039;	alias vf=&amp;#039;cd&amp;#039;	alias moer=&amp;#039;more&amp;#039;	alias moew=&amp;#039;more&amp;#039;	alias kk=&amp;#039;ll&amp;#039;#===========END ===============&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;# .bashrc# My first Entryecho &amp;#039;		 =============================&amp;#039;echo &amp;#039;		 |Welcome to Processing Server|&amp;#039;echo &amp;#039;		 =============================&amp;#039;cd /data/rajpwd# Source global definitionsif [ -f /etc/bashrc ]; then	. /etc/bashrcfi# ==== RAJ===Enable color support of ls and also add handy aliasesif [ -x /usr/bin/dircolors ]; then    test -r ~/.dircolors &amp;amp;&amp;amp; eval &amp;quot;$(dircolors -b ~/.dircolors)&amp;quot; || eval &amp;quot;$(dircolors -b)&amp;quot;    alias ls=&amp;#039;ls --color=auto&amp;#039;    #alias dir=&amp;#039;dir --color=auto&amp;#039;    #alias vdir=&amp;#039;vdir --color=auto&amp;#039;    alias grep=&amp;#039;grep --color=auto&amp;#039;    alias fgrep=&amp;#039;fgrep --color=auto&amp;#039;    alias egrep=&amp;#039;egrep --color=auto&amp;#039;fiif [ -f ~/.bash_aliases ]; then    . ~/.bash_aliasesfiif [ -f /etc/bash_completion ] &amp;amp;&amp;amp; ! shopt -oq posix; then    . /etc/bash_completionfi# ====== Aliases ==============	alias rm=&amp;#039;rm -i&amp;#039;	alias cp=&amp;#039;cp -i&amp;#039;	alias mv=&amp;#039;mv -i&amp;#039;	alias h=&amp;#039;history&amp;#039;	alias j=&amp;#039;jobs -l&amp;#039;	alias which=&amp;#039;type -a&amp;#039;	alias ..=&amp;#039;cd ..&amp;#039;	alias du=&amp;#039;du -kh&amp;#039;    # Makes a more readable output.	alias df=&amp;#039;df -kTh&amp;#039;	# Add colors for filetype and  human-readable sizes by default on &amp;#039;ls&amp;#039;:	alias ls=&amp;#039;ls -h --color&amp;#039;	alias lx=&amp;#039;ls -lXB&amp;#039;         #  Sort by extension.	alias lk=&amp;#039;ls -lSr&amp;#039;         #  Sort by size, biggest last.	alias lt=&amp;#039;ls -ltr&amp;#039;         #  Sort by date, most recent last.	alias lc=&amp;#039;ls -ltcr&amp;#039;        #  Sort by/show change time,most recent last.	alias lu=&amp;#039;ls -ltur&amp;#039;        #  Sort by/show access time,most recent last.	# List	alias ll=&amp;quot;ls -lhv --group-directories-first&amp;quot;	alias lm=&amp;#039;ll |more&amp;#039;        #  Pipe through &amp;#039;more&amp;#039;	alias lr=&amp;#039;ll -R&amp;#039;           #  Recursive ls.	alias la=&amp;#039;ll -Ah&amp;#039;           #  Show hidden files.	alias l=&amp;#039;ls -CF&amp;#039;	alias tree=&amp;#039;tree -Csuh&amp;#039;    #  Nice alternative to &amp;#039;recursive ls&amp;#039; ...	# Spelling typos - highly personnal and keyboard-dependent :-)	alias xs=&amp;#039;cd&amp;#039;	alias vf=&amp;#039;cd&amp;#039;	alias moer=&amp;#039;more&amp;#039;	alias moew=&amp;#039;more&amp;#039;	alias kk=&amp;#039;ll&amp;#039;#===========END ===============&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&amp;lt;pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/&lt;/ins&gt;pre&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;

&lt;!-- diff cache key raj_wiki:diff:1.41:old-3002:rev-4865:php=table --&gt;
&lt;/table&gt;</summary>
		<author><name>Raj</name></author>
	</entry>
	<entry>
		<id>https://www.rajkumar.in/index.php?title=Bashrc&amp;diff=3002&amp;oldid=prev</id>
		<title>Raj at 08:42, 13 August 2013</title>
		<link rel="alternate" type="text/html" href="https://www.rajkumar.in/index.php?title=Bashrc&amp;diff=3002&amp;oldid=prev"/>
		<updated>2013-08-13T08:42:42Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw-interface=&quot;&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 08:42, 13 August 2013&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot; id=&quot;mw-diff-left-l1&quot;&gt;Line 1:&lt;/td&gt;
&lt;td colspan=&quot;2&quot; class=&quot;diff-lineno&quot;&gt;Line 1:&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[:Category:Bioinformatics]]&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot;&gt;&lt;/td&gt;&lt;td style=&quot;background-color: #f8f9fa; color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #eaecf0; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;[[:Category:Bioinformatics]]&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;source line&lt;/del&gt;&amp;gt;# .bashrc# My first Entryecho &#039;		 =============================&#039;echo &#039;		 |Welcome to Processing Server|&#039;echo &#039;		 =============================&#039;cd /data/rajpwd# Source global definitionsif [ -f /etc/bashrc ]; then	. /etc/bashrcfi# ==== RAJ===Enable color support of ls and also add handy aliasesif [ -x /usr/bin/dircolors ]; then    test -r ~/.dircolors &amp;amp;&amp;amp; eval &quot;$(dircolors -b ~/.dircolors)&quot; || eval &quot;$(dircolors -b)&quot;    alias ls=&#039;ls --color=auto&#039;    #alias dir=&#039;dir --color=auto&#039;    #alias vdir=&#039;vdir --color=auto&#039;    alias grep=&#039;grep --color=auto&#039;    alias fgrep=&#039;fgrep --color=auto&#039;    alias egrep=&#039;egrep --color=auto&#039;fiif [ -f ~/.bash_aliases ]; then    . ~/.bash_aliasesfiif [ -f /etc/bash_completion ] &amp;amp;&amp;amp; ! shopt -oq posix; then    . /etc/bash_completionfi# ====== Aliases ==============	alias rm=&#039;rm -i&#039;	alias cp=&#039;cp -i&#039;	alias mv=&#039;mv -i&#039;	alias h=&#039;history&#039;	alias j=&#039;jobs -l&#039;	alias which=&#039;type -a&#039;	alias ..=&#039;cd ..&#039;	alias du=&#039;du -kh&#039;    # Makes a more readable output.	alias df=&#039;df -kTh&#039;	# Add colors for filetype and  human-readable sizes by default on &#039;ls&#039;:	alias ls=&#039;ls -h --color&#039;	alias lx=&#039;ls -lXB&#039;         #  Sort by extension.	alias lk=&#039;ls -lSr&#039;         #  Sort by size, biggest last.	alias lt=&#039;ls -ltr&#039;         #  Sort by date, most recent last.	alias lc=&#039;ls -ltcr&#039;        #  Sort by/show change time,most recent last.	alias lu=&#039;ls -ltur&#039;        #  Sort by/show access time,most recent last.	# List	alias ll=&quot;ls -lhv --group-directories-first&quot;	alias lm=&#039;ll |more&#039;        #  Pipe through &#039;more&#039;	alias lr=&#039;ll -R&#039;           #  Recursive ls.	alias la=&#039;ll -Ah&#039;           #  Show hidden files.	alias l=&#039;ls -CF&#039;	alias tree=&#039;tree -Csuh&#039;    #  Nice alternative to &#039;recursive ls&#039; ...	# Spelling typos - highly personnal and keyboard-dependent :-)	alias xs=&#039;cd&#039;	alias vf=&#039;cd&#039;	alias moer=&#039;more&#039;	alias moew=&#039;more&#039;	alias kk=&#039;ll&#039;#===========END ===============&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;pre&lt;/ins&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;−&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #ffe49c; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&amp;lt;&lt;del style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;/source&lt;/del&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;# .bashrc# My first Entryecho &#039;		 =============================&#039;echo &#039;		 |Welcome to Processing Server|&#039;echo &#039;		 =============================&#039;cd /data/rajpwd# Source global definitionsif [ -f /etc/bashrc ]; then	. /etc/bashrcfi# ==== RAJ===Enable color support of ls and also add handy aliasesif [ -x /usr/bin/dircolors ]; then    test -r ~/.dircolors &amp;amp;&amp;amp; eval &quot;$(dircolors -b ~/.dircolors)&quot; || eval &quot;$(dircolors -b)&quot;    alias ls=&#039;ls --color=auto&#039;    #alias dir=&#039;dir --color=auto&#039;    #alias vdir=&#039;vdir --color=auto&#039;    alias grep=&#039;grep --color=auto&#039;    alias fgrep=&#039;fgrep --color=auto&#039;    alias egrep=&#039;egrep --color=auto&#039;fiif [ -f ~/.bash_aliases ]; then    . ~/.bash_aliasesfiif [ -f /etc/bash_completion ] &amp;amp;&amp;amp; ! shopt -oq posix; then    . /etc/bash_completionfi# ====== Aliases ==============	alias rm=&#039;rm -i&#039;	alias cp=&#039;cp -i&#039;	alias mv=&#039;mv -i&#039;	alias h=&#039;history&#039;	alias j=&#039;jobs -l&#039;	alias which=&#039;type -a&#039;	alias ..=&#039;cd ..&#039;	alias du=&#039;du -kh&#039;    # Makes a more readable output.	alias df=&#039;df -kTh&#039;	# Add colors for filetype and  human-readable sizes by default on &#039;ls&#039;:	alias ls=&#039;ls -h --color&#039;	alias lx=&#039;ls -lXB&#039;         #  Sort by extension.	alias lk=&#039;ls -lSr&#039;         #  Sort by size, biggest last.	alias lt=&#039;ls -ltr&#039;         #  Sort by date, most recent last.	alias lc=&#039;ls -ltcr&#039;        #  Sort by/show change time,most recent last.	alias lu=&#039;ls -ltur&#039;        #  Sort by/show access time,most recent last.	# List	alias ll=&quot;ls -lhv --group-directories-first&quot;	alias lm=&#039;ll |more&#039;        #  Pipe through &#039;more&#039;	alias lr=&#039;ll -R&#039;           #  Recursive ls.	alias la=&#039;ll -Ah&#039;           #  Show hidden files.	alias l=&#039;ls -CF&#039;	alias tree=&#039;tree -Csuh&#039;    #  Nice alternative to &#039;recursive ls&#039; ...	# Spelling typos - highly personnal and keyboard-dependent :-)	alias xs=&#039;cd&#039;	alias vf=&#039;cd&#039;	alias moer=&#039;more&#039;	alias moew=&#039;more&#039;	alias kk=&#039;ll&#039;#===========END ===============&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt; &lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-side-deleted&quot;&gt;&lt;/td&gt;&lt;td class=&quot;diff-marker&quot; data-marker=&quot;+&quot;&gt;&lt;/td&gt;&lt;td style=&quot;color: #202122; font-size: 88%; border-style: solid; border-width: 1px 1px 1px 4px; border-radius: 0.33em; border-color: #a3d3ff; vertical-align: top; white-space: pre-wrap;&quot;&gt;&lt;div&gt;&amp;lt;&lt;ins style=&quot;font-weight: bold; text-decoration: none;&quot;&gt;pre&lt;/ins&gt;&amp;gt;&lt;/div&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</summary>
		<author><name>Raj</name></author>
	</entry>
	<entry>
		<id>https://www.rajkumar.in/index.php?title=Bashrc&amp;diff=3001&amp;oldid=prev</id>
		<title>Raj: Created page with &quot;:Category:Bioinformatics &lt;source line&gt;# .bashrc# My first Entryecho &#039;		 =============================&#039;echo &#039;		 |Welcome to Processing Server|&#039;echo &#039;		 ====================...&quot;</title>
		<link rel="alternate" type="text/html" href="https://www.rajkumar.in/index.php?title=Bashrc&amp;diff=3001&amp;oldid=prev"/>
		<updated>2013-08-13T08:40:48Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&lt;a href=&quot;/index.php/Category:Bioinformatics&quot; title=&quot;Category:Bioinformatics&quot;&gt;Category:Bioinformatics&lt;/a&gt; &amp;lt;source line&amp;gt;# .bashrc# My first Entryecho &amp;#039;		 =============================&amp;#039;echo &amp;#039;		 |Welcome to Processing Server|&amp;#039;echo &amp;#039;		 ====================...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[:Category:Bioinformatics]]&lt;br /&gt;
&amp;lt;source line&amp;gt;# .bashrc# My first Entryecho &amp;#039;		 =============================&amp;#039;echo &amp;#039;		 |Welcome to Processing Server|&amp;#039;echo &amp;#039;		 =============================&amp;#039;cd /data/rajpwd# Source global definitionsif [ -f /etc/bashrc ]; then	. /etc/bashrcfi# ==== RAJ===Enable color support of ls and also add handy aliasesif [ -x /usr/bin/dircolors ]; then    test -r ~/.dircolors &amp;amp;&amp;amp; eval &amp;quot;$(dircolors -b ~/.dircolors)&amp;quot; || eval &amp;quot;$(dircolors -b)&amp;quot;    alias ls=&amp;#039;ls --color=auto&amp;#039;    #alias dir=&amp;#039;dir --color=auto&amp;#039;    #alias vdir=&amp;#039;vdir --color=auto&amp;#039;    alias grep=&amp;#039;grep --color=auto&amp;#039;    alias fgrep=&amp;#039;fgrep --color=auto&amp;#039;    alias egrep=&amp;#039;egrep --color=auto&amp;#039;fiif [ -f ~/.bash_aliases ]; then    . ~/.bash_aliasesfiif [ -f /etc/bash_completion ] &amp;amp;&amp;amp; ! shopt -oq posix; then    . /etc/bash_completionfi# ====== Aliases ==============	alias rm=&amp;#039;rm -i&amp;#039;	alias cp=&amp;#039;cp -i&amp;#039;	alias mv=&amp;#039;mv -i&amp;#039;	alias h=&amp;#039;history&amp;#039;	alias j=&amp;#039;jobs -l&amp;#039;	alias which=&amp;#039;type -a&amp;#039;	alias ..=&amp;#039;cd ..&amp;#039;	alias du=&amp;#039;du -kh&amp;#039;    # Makes a more readable output.	alias df=&amp;#039;df -kTh&amp;#039;	# Add colors for filetype and  human-readable sizes by default on &amp;#039;ls&amp;#039;:	alias ls=&amp;#039;ls -h --color&amp;#039;	alias lx=&amp;#039;ls -lXB&amp;#039;         #  Sort by extension.	alias lk=&amp;#039;ls -lSr&amp;#039;         #  Sort by size, biggest last.	alias lt=&amp;#039;ls -ltr&amp;#039;         #  Sort by date, most recent last.	alias lc=&amp;#039;ls -ltcr&amp;#039;        #  Sort by/show change time,most recent last.	alias lu=&amp;#039;ls -ltur&amp;#039;        #  Sort by/show access time,most recent last.	# List	alias ll=&amp;quot;ls -lhv --group-directories-first&amp;quot;	alias lm=&amp;#039;ll |more&amp;#039;        #  Pipe through &amp;#039;more&amp;#039;	alias lr=&amp;#039;ll -R&amp;#039;           #  Recursive ls.	alias la=&amp;#039;ll -Ah&amp;#039;           #  Show hidden files.	alias l=&amp;#039;ls -CF&amp;#039;	alias tree=&amp;#039;tree -Csuh&amp;#039;    #  Nice alternative to &amp;#039;recursive ls&amp;#039; ...	# Spelling typos - highly personnal and keyboard-dependent :-)	alias xs=&amp;#039;cd&amp;#039;	alias vf=&amp;#039;cd&amp;#039;	alias moer=&amp;#039;more&amp;#039;	alias moew=&amp;#039;more&amp;#039;	alias kk=&amp;#039;ll&amp;#039;#===========END ===============&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Raj</name></author>
	</entry>
</feed>