diff options
| author | jules <jules@asdf.us> | 2018-05-23 23:47:05 +0200 |
|---|---|---|
| committer | jules <jules@asdf.us> | 2018-05-23 23:47:05 +0200 |
| commit | c5abef4cab403e874683440b52b40f64e88fc96b (patch) | |
| tree | 29d961008e84d4d02a863f6f588564109b30c507 | |
| parent | 566bd785e607b41d37120a20f236740944f00e84 (diff) | |
logging
| -rwxr-xr-x | datasets/dataset.pl | 4 | ||||
| -rwxr-xr-x | get.pl | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/datasets/dataset.pl b/datasets/dataset.pl index 75aa2b1..cf1c1e2 100755 --- a/datasets/dataset.pl +++ b/datasets/dataset.pl @@ -5,6 +5,7 @@ use Getopt::Std; our $opt_c; getopts('c'); +print "<<<< DATASET >>>>\n"; my $fmt = <<FMT; Input File : '01_snapping_clean.wav' @@ -66,7 +67,8 @@ sub process($) { system("/bin/rm", $b_tmp); } -foreach my $file (@ARGV) {; +foreach my $file (@ARGV) { + print $file . "\n"; if ( -e $file ) { process($file); } @@ -35,7 +35,7 @@ foreach my $s (@ARGV){ } } if ($fn) { - $new_fn = sanitize($fn) + $new_fn = sanitize($fn); $new_fn .= '.flac'; system('mv', $fn, $new_fn); print "got fn, $fn => $new_fn\n"; |
