<?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: Perl script to find the absolute "full" path of the file !]]></title>
	<link>https://bioinformaticsonline.com/snippets/view/27919/perl-script-to-find-the-absolute-full-path-of-the-file?</link>
	<atom:link href="https://bioinformaticsonline.com/snippets/view/27919/perl-script-to-find-the-absolute-full-path-of-the-file?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/snippets/view/27919/perl-script-to-find-the-absolute-full-path-of-the-file</guid>
	<pubDate>Fri, 17 Jun 2016 08:58:08 -0500</pubDate>
	<link>https://bioinformaticsonline.com/snippets/view/27919/perl-script-to-find-the-absolute-full-path-of-the-file</link>
	<title><![CDATA[Perl script to find the absolute "full" path of the file !]]></title>
	<description><![CDATA[<code>#!/usr/bin/perl

use Cwd;
my $this_file_full_path = Cwd::abs_path(__FILE__);
print &quot;$this_file_full_path\n&quot;;


use Cwd qw/ realpath /;
## $0; this script 
my $path = realpath($0);
print $path;</code>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>