2010年12月6日 星期一

Environment

1. u can set the perl lib enoment using the perl Using the PERL5LIB
~/.bashrc
{{{
# For perl lib
export PERL5LIB=/home/Andy/GRC/MyProgram/perlLib
}}}
* Look ~/perlLib content
{{{
[Andy@blast2 fasta]$ ls /home/Andy/GRC/MyProgram/perlLib
Init_V1.pm LineFunction_V1.pm
}}}
* Usage perl selft package
{{{
require "Init_V1.pm";
require "LineFunction_V1.pm";

}}}