I found the way. Using perlcc command we can crack the above scenario.
Example,
Consider, the perl script available in hello.pl.
Command:
perlcc -B -o hello hello.pl
The option -B use the Perl bytecode code generator.
The option -o used to make a executable file.