Monday, December 20, 2010

postdoc fellowship

postdoc fellowships without GC requirement.
HHWF
JCC
DRCR
LSRF
K99
BW
AHA (is this one field specific?)
LLS

Neuroscience
NINDS

Saturday, December 18, 2010

remove file extension

$file="file.name.extension";

$file =~ s/(.*)\./$1/;
##or
$file =~ s/\.[^.]*$//;

will return you $file="file.name";