#!/bin/bash langs=(afr amh ara asm ast azj-script_latin bel ben bos bul cat ceb ces ckb cmn-script_simplified cym dan deu ell eng est fas fin fra ful gle glg guj hau heb hin hrv hun hye ibo ind isl ita jav jpn kam kan kat kaz kea khm kir kor lao lav lin lit ltz lug luo mal mar mkd mlt mon mri mya nld nob npi nso nya oci orm ory pan pol por pus ron rus slk slv sna snd som spa srp-script_latin swe swh tam tel tgk tgl tha tur ukr umb urd-script_arabic uzb-script_latin vie wol xho yor yue-script_traditional zlm zul) link_format="https://dl.fbaipublicfiles.com/mms/asr/dict/mms1b_fl102/" mkdir -p vocabs cd vocabs for lang in ${langs[@]}; do link="${link_format}${lang}.txt" echo "wget ${link}" wget ${link} done