Skip to content

Instantly share code, notes, and snippets.

@tomsherborne
Last active September 5, 2022 16:45
Show Gist options
  • Save tomsherborne/fe979178bd70a390fcc66a22ac579470 to your computer and use it in GitHub Desktop.
Save tomsherborne/fe979178bd70a390fcc66a22ac579470 to your computer and use it in GitHub Desktop.
splits="444 555"
locales="fr pt es de zh"
samples="01 05 10 20 50"
for sp in $splits;
do echo $sp;
for loc in $locales;
do echo $loc;
for sample in $samples;
do echo $sample;
cat ./${sp}/${sample}/${loc}.train* >> ./${sp}/${sample}/ALL.train.union.${sp}.${sample};
done;
done;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment