<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Wire posts tagged with 'Bash']]></title>
	<link>https://bioinformaticsonline.com/thewire/tag/Bash?offset=0</link>
	<atom:link href="https://bioinformaticsonline.com/thewire/tag/Bash?offset=0" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/41551</guid>
	<pubDate>Sun, 05 Apr 2020 05:32:01 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/41551</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Extract the underscore separated values. $ awk '{split($0,a,"_"); print a[1]"_"a[2]}' aaa.txt | sort | uniq -u &gt; all_ids_sm.txt #awk #bash #underscore #list</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/40586</guid>
	<pubDate>Tue, 21 Jan 2020 06:56:24 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/40586</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Awk hack for bioinformatician https://www.shellhacks.com/awk-print-column-change-field-separator-linux-bash/ #Hack #Bioinfo #Bash</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/40134</guid>
	<pubDate>Mon, 21 Oct 2019 12:00:22 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/40134</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>https://github.com/stephenturner/oneliners #Bash #Tutorial #OneLiner</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38725</guid>
	<pubDate>Fri, 18 Jan 2019 16:45:41 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38725</link>
	<title><![CDATA[Wire post by BioJoker]]></title>
	<description><![CDATA[
<p>Create user with bash $su - joker #user #bash #create</p>
]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38723</guid>
	<pubDate>Fri, 18 Jan 2019 16:36:46 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38723</link>
	<title><![CDATA[Wire post by BioJoker]]></title>
	<description><![CDATA[
<p>Read a file in terminal $ less file2 #bash #less</p>
]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38721</guid>
	<pubDate>Fri, 18 Jan 2019 16:33:51 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38721</link>
	<title><![CDATA[Wire post by BioJoker]]></title>
	<description><![CDATA[
<p>Write in a file in bash $ cat &gt;&gt; file  then ctrl+d to exit #bash #cat #write</p>
]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38719</guid>
	<pubDate>Fri, 18 Jan 2019 16:26:35 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38719</link>
	<title><![CDATA[Wire post by BioJoker]]></title>
	<description><![CDATA[
<p>List all the bash command related to time $ apropos time #bash #time #list</p>
]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38717</guid>
	<pubDate>Fri, 18 Jan 2019 16:19:42 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38717</link>
	<title><![CDATA[Wire post by BioJoker]]></title>
	<description><![CDATA[
<p>Find the file $ locate xgenome  or locate fstab #bash #locate</p>
]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38713</guid>
	<pubDate>Fri, 18 Jan 2019 16:16:40 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38713</link>
	<title><![CDATA[Wire post by BioJoker]]></title>
	<description><![CDATA[
<p>ls -a to list all files #bash #list #ls</p>
]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38711</guid>
	<pubDate>Fri, 18 Jan 2019 16:14:25 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38711</link>
	<title><![CDATA[Wire post by BioJoker]]></title>
	<description><![CDATA[
<p>To move between current directories $ popd and pushd #pushd #popd #bash</p>
]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38032</guid>
	<pubDate>Mon, 29 Oct 2018 06:30:40 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38032</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Bash scripting cheatsheet https://devhints.io/bash #Bash #CheatSheet  #Script</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/37390</guid>
	<pubDate>Fri, 20 Jul 2018 04:09:56 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/37390</link>
	<title><![CDATA[Wire post by Hardeep Kaur]]></title>
	<description><![CDATA[
<p>sort -k2 -n genome.fa #Sort #Column2 #Bash</p>
]]></description>
	<dc:creator>Hardeep Kaur</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/34032</guid>
	<pubDate>Sat, 29 Jul 2017 04:24:38 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/34032</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Print each command before executing? Bash script to print each command before executing. $ bash -x myscript.sh #Print #Command #Bash</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/32733</guid>
	<pubDate>Wed, 17 May 2017 03:50:26 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/32733</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>A full-featured &amp; carefully designed adaptive prompt for Bash &amp; Zsh https://github.com/nojhan/liquidprompt #Shell #Zsh #Bash</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/24308</guid>
	<pubDate>Sat, 05 Sep 2015 11:57:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/24308</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Fork Bomb Bash script for your Linux OS  its copies continually replicate themselves, quickly taking up all your CPU time and memory :(){ :|: &amp; };: #Freeze #Bash #Linux #Fork</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>

</channel>
</rss>