A place for Pluckeye users to chew the cud.
You are not logged in.
Pages: 1
Hello,
I wrote 2 Perl Scripts that I thought. They are very simple and not the best written but they have been helpful to me and I figured it's good to share. All of these files I release into the public domain with no liability expressed or implied etc to the extent legal by law. To use, just copy the code into a file with the specified filename, put into one folder, and run as per the comments. Currently I've only used it on Ubuntu.
addsometimes.pl:
#addsometimes.pl
#Allows the specified site, except within 2 time frames
#usage: perl addsometimes_public.pl SITENAME
my $sitename = $ARGV[0];
my $firstblocked = "0000-1300";
my $secondblocked = "1500-2359";
my $allow_cmd = "pluck add \"allow $sitename\"";
my $first_block = "pluck add \"sometimes $firstblocked block $sitename\"";
my $second_block = "pluck add \"sometimes $secondblocked block $sitename\"";
system $allow_cmd;
system $first_block;
system $second_block;
somefromfile.pl
#somefromfile.pl
#calls addsometimes.pl on a text file of URLs, 1 per line
#usage: perl somefromfile.pl FILENAME
my $fp = $ARGV[0];
my $slurp = `cat $fp`;
my @s = split (/\n/ ,$slurp);
foreach $i (@s){
system ("perl addsometimes.pl $i");
}
remove_onetimers.pl
#remove_onetimers.pl
#removes any onetime rules
#usage perl remove_onetimers.pl
#20200609131217-20200609191217
my $settings = `pluck export`;
open (my $sfh, '<', \$settings) or die "canot open sfh!\n";
while (my $line = <$sfh>){
chomp $line;
if ($line =~ /\d{14}\-\d{14}/ and $line !~ /^#/ ) {
system "pluck - $line";
}
}
Example input file for somefromfile.pl
homestarrunner.com
pardus.at
theregister.co.uk
And also I just put into my .bashrc:
alias somepluck='perl ~/filter/addsometimes.pl'
So you could do "somepluck dilbert.com" for example (whatever your home directory is)
Hope it's useful to someone!
Offline
Thanks for sharing!
A comment or two:
1. "sometimes" is deprecated; change it to "when" for modern pluckeye
2. FYI, you can combine time frames like so:
pluck + when '1-2&3-4' block example.com
You can either quote the '&' as above, or escape it with a backslash. And in Pluck 1.0, you can use a comma (,) instead of ampersand (&) to avoid the need to quote.
Offline
Pages: 1