You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
295 B
Perl
17 lines
295 B
Perl
#!/usr/bin/perl
|
|
|
|
my $WANT_JSON = 1;
|
|
|
|
my $json;
|
|
{
|
|
local $/; #Enable 'slurp' mode
|
|
open my $fh, "<", $ARGV[0];
|
|
$json_args = <$fh>;
|
|
close $fh;
|
|
}
|
|
|
|
print "{\n";
|
|
print ' "message": "I am a want JSON perl script! Here is my input.",' . "\n";
|
|
print ' "input": ' . $json_args . "\n";
|
|
print "}\n";
|