PAR::Filter::Bytecode(3) User Contributed Perl Documentation PAR::Filter::Bytecode(3)NAME
PAR::Filter::Bytecode - Bytecode filter
SYNOPSIS
PAR::Filter::Bytecode->apply($code); # transforms $code
DESCRIPTION
This filter is deprecated. The B::Bytecode code has been removed from the newest development series of perl and will not be included in
perl 5.10 any more. Please have a look at Steve Hay's PAR::Filter::Crypto module if you want to hide your sources.
This filter uses B::Bytecode to turn the script into comment-free, architecture-specific Perl bytecode, and uses ByteLoader to load back on
execution.
For pp users, please add an extra -M option, like this:
pp -f Bytecode -M ByteLoader
Otherwise, the implicit dependency on ByteLoader will not be detected.
CAVEATS
This backend exhibits all bugs listed in B::Bytecode, and then some.
Bytecode support is considered to be extremely fragile on Perl versions earlier than 5.8.1, and is still far from robust (as of this
writing).
Bytecode is not supported by perl 5.9 and later.
SEE ALSO
PAR::Filter, B::Bytecode, ByteLoader
Filter::Crypto, PAR::Filter::Crypto
AUTHORS
Audrey Tang <cpan@audreyt.org>
<http://par.perl.org/> is the official PAR website. You can write to the mailing list at <par@perl.org>, or send an empty mail to
<par-subscribe@perl.org> to participate in the discussion.
Please submit bug reports to <bug-par@rt.cpan.org>.
COPYRIGHT
Copyright 2003-2009 by Audrey Tang <cpan@audreyt.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See <http://www.perl.com/perl/misc/Artistic.html>
perl v5.16.2 2012-01-06 PAR::Filter::Bytecode(3)
Check Out this Related Man Page
PAR::Filter::Bytecode(3) User Contributed Perl Documentation PAR::Filter::Bytecode(3)NAME
PAR::Filter::Bytecode - Bytecode filter
SYNOPSIS
PAR::Filter::Bytecode->apply($code); # transforms $code
DESCRIPTION
This filter is deprecated. The B::Bytecode code has been removed from the newest development series of perl and will not be included in
perl 5.10 any more. Please have a look at Steve Hay's PAR::Filter::Crypto module if you want to hide your sources.
This filter uses B::Bytecode to turn the script into comment-free, architecture-specific Perl bytecode, and uses ByteLoader to load back on
execution.
For pp users, please add an extra -M option, like this:
pp -f Bytecode -M ByteLoader
Otherwise, the implicit dependency on ByteLoader will not be detected.
CAVEATS
This backend exhibits all bugs listed in B::Bytecode, and then some.
Bytecode support is considered to be extremely fragile on Perl versions earlier than 5.8.1, and is still far from robust (as of this
writing).
Bytecode is not supported by perl 5.9 and later.
SEE ALSO
PAR::Filter, B::Bytecode, ByteLoader
Filter::Crypto, PAR::Filter::Crypto
AUTHORS
Audrey Tang <cpan@audreyt.org>
<http://par.perl.org/> is the official PAR website. You can write to the mailing list at <par@perl.org>, or send an empty mail to
<par-subscribe@perl.org> to participate in the discussion.
Please submit bug reports to <bug-par@rt.cpan.org>.
COPYRIGHT
Copyright 2003-2009 by Audrey Tang <cpan@audreyt.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See <http://www.perl.com/perl/misc/Artistic.html>
perl v5.18.2 2012-01-06 PAR::Filter::Bytecode(3)
Hi all,
Sometime back, had put up a Q regarding hiding perl code.
A: There is a utility known as 'pp' which comes along with PAR. Downloaded from
CPAN. These people have done wonderful work I must say. Cool executables from
perl scripts.
Have one more... (4 Replies)
Hi,
I'm currently working on a perl website, and I would need a system where a few users can login into the administration side of the site. about 5-10 users maximum, all pretty simple.
I was thinking of using an .htaccess file and a seperate admin folder on the server. I'm wondering if there... (2 Replies)
Hello. I've been writing some code in Perl to read in strings from html files and have been having issues. In the html file, each "paragraph" is a certain file on the website. I need to find every one of the files that is a certain type, in this case, having green color....therefore... (7 Replies)
Hi
I'm newbie in perl programming..hope to get some help on perl.how can i filter line below
Connected to 179.1.1.134. to only 179.1.1.134 without the (.) at the end (4 Replies)
I'm sure that there is quite a simple solution to this, but so far, I'm not having any luck. I'm redirecting e-mail to a perl script that uses Email::Filter and then does some parsing and forwarding.
I'm using Email::Filter->new() to pull it into a variable. When I forward the message and... (3 Replies)
I have written small piece of code to send mail through perl script.Below is the code.I have executed it as #
perl perlmail.pl and the code got executed with no errors.
Still have not received any mail.
Also I have installed Mail::send module from CPAN directly but no luck.
Could any mail... (2 Replies)
hi,
i have posted the same kind of the question in some other forum of the same site. but realized that it is supposed to be here so i am reposting it .this is the perl script written to check for particular pattern.
my file 1 would look like this
hwk:678:9878:asd:09: abc cfgb 12 nmjk ......... (3 Replies)
I am writing a perl code(windows) to traceroute IP address and to print the output.
I had executed the below code which was taken from cpan modules
#!C:/perl/bin/perl.exe
use Net::Traceroute;
$tr = Net::Traceroute->new(host=> "google.com");
if($tr->found) {
my $hops = $tr->hops;
if($hops... (4 Replies)
Hello friends . I am newbie to perl scripting but still managed to write a code but i am stuck at a place where i need help . Below is the code and can someone help me in taking user input for changing the font size for a html table .Thank you in advance
#!/bin/ksh
echo " Enter the Directory... (4 Replies)
Hi,
I am new to perl.
I am trying to write a small perl script for search and replace in a file :
========================================================
#!/usr/bin/perl
my $searchStr = "register_inst\.write_t\(";
my $replaceStr = "model\.fc_block\.";
open(FILE,"temp.sv") ||... (2 Replies)
Hi All,
I m just writing a perl script which is using cleartool commands.
My requirement is
Need to check the list of views and send mail depends on the result.
Command to check the views is below and it will return the views if views are present.
ct lsview
If it give the list... (2 Replies)
Hi All,
I new to perl scripting, trying to write a program to get multiple inputs from the users and it should be stored in one variable. can some one help me with it .
here is the sample code i tried , but its not working.
# cat array.pl
#!/usr/bin/perl
print "enter the total no of... (4 Replies)