/usr/share/doc/libweb-id-perl/examples/fingerpoint-test.pl is in libweb-id-perl 1.927-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | use 5.010;
use Web::ID::SAN::Email;
use RDF::Trine;
my $san = Web::ID::SAN::Email->new(
type => 'rfc822Address',
value => 'somebody@fingerpoint.tobyinkster.co.uk',
);
say $san->uri_object;
print RDF::Trine::Serializer
-> new('Turtle')
-> serialize_model_to_string( $san->model );
|