summaryrefslogtreecommitdiff
path: root/datasets/get.pl
diff options
context:
space:
mode:
Diffstat (limited to 'datasets/get.pl')
-rwxr-xr-xdatasets/get.pl9
1 files changed, 9 insertions, 0 deletions
diff --git a/datasets/get.pl b/datasets/get.pl
new file mode 100755
index 0000000..14c5a5b
--- /dev/null
+++ b/datasets/get.pl
@@ -0,0 +1,9 @@
+#!/usr/bin/perl
+
+foreach (@ARGV){
+ my $s = $_;
+ if ($s !~/\..*$/) { $s .= ".wav"; }
+ system('/usr/bin/wget', 'https://neural:spawn5@asdf.us/neural/' . $s);
+ system('/usr/bin/perl', 'dataset.pl', $s);
+}
+