summaryrefslogtreecommitdiff
path: root/datasets
diff options
context:
space:
mode:
authorjules on spawn <spawn@cortex>2018-04-10 15:57:54 +0200
committerjules on spawn <spawn@cortex>2018-04-10 15:57:54 +0200
commit332d6f5b739c8e037e3d2877085f45fbeef375e8 (patch)
tree0ace10cdd06fb851f873fbcbc7e0df4074b4a779 /datasets
parent3ea2f8f581a857920b7c2f4d1d3a0a12401758ec (diff)
get script should build dataset
Diffstat (limited to 'datasets')
-rwxr-xr-xdatasets/get.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/datasets/get.pl b/datasets/get.pl
index 531b9f7..14c5a5b 100755
--- a/datasets/get.pl
+++ b/datasets/get.pl
@@ -1,5 +1,9 @@
#!/usr/bin/perl
foreach (@ARGV){
- my $s = $_; if ($s !~/\..*$/) { $s .= ".wav"; } system('/usr/bin/wget', 'https://neural:spawn5@asdf.us/neural/' . $s); }
+ my $s = $_;
+ if ($s !~/\..*$/) { $s .= ".wav"; }
+ system('/usr/bin/wget', 'https://neural:spawn5@asdf.us/neural/' . $s);
+ system('/usr/bin/perl', 'dataset.pl', $s);
+}