File: dummy_mcl

package info (click to toggle)
roary 3.13.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 3,944 kB
  • sloc: perl: 10,536; sh: 211; makefile: 9
file content (12 lines) | stat: -rwxr-xr-x 258 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env perl
use Moose;
use Getopt::Long;
my ($output_filename,$abc_format,$inflation);
GetOptions(
    'o|output=s' => \$output_filename,
    'i|inflation=s' => \$inflation,
    'a|abc'         => \$abc_format
);

system("touch $output_filename");
1;