diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-20 17:57:35 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-20 17:57:35 +0200 |
| commit | 4fc90475438982ad42c191ccf509efea94ee83da (patch) | |
| tree | 7ca705b31dd53446cf0e88017201cd459bf23a04 | |
| parent | 8f902f12a4a4a7214d0511c256417c5bcb432a9e (diff) | |
boooooooh
| -rwxr-xr-x | dir-to-movie.pl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/dir-to-movie.pl b/dir-to-movie.pl index ff5a9cc..4ca963b 100755 --- a/dir-to-movie.pl +++ b/dir-to-movie.pl @@ -10,15 +10,17 @@ my $tag = "pix2pixhd_" . time; my $module = "pix2pixhd"; my $endpoint = undef; GetOptions ( - "tag" => \$tag, - "module" => \$module, - "endpoint" => \$endpoint + "tag=s" => \$tag, + "module=s" => \$module, + "endpoint=s" => \$endpoint ) or die("Error in command line arguments\n"); $tag =~ s/\....$//; -print "$tag\n"; +print "tag: $tag\n"; +print "module: $module\n"; +print "endpoint: $endpoint\n"; if (! -e "results/$tag") { print "usage: $0 [tag]\n"; |
