You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
222 B
5 lines
222 B
3 months ago
|
Text should be in a file with English-Hungarian or Hungarian-English and it will output the vocab lines that the website needs
|
||
|
|
||
|
awk -F"|" '{ printf "{ word: \"%s\", meaning: \"%s\" },\n", $2, $1}' vocab.txt > vocab1.txt
|
||
|
|