Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/proc/self/root/bin/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/bin/srx2table

#!/usr/bin/perl

use strict;
use warnings;
use RDF::Trine;

my $data;
if (scalar(@ARGV) and -r $ARGV[0]) {
	my $file	= shift;
	$data	= do { local($/) = undef; open(my $fh, '<:encoding(UTF-8)', $file) or die $!; <$fh> };
} else {
	binmode(\*STDIN, ':encoding(UTF-8)');
	local($/)	= undef;
	$data	= <>;
}

my $iter	= RDF::Trine::Iterator->from_string( $data );
print $iter->as_string;