尝试跨两个文件读取四个不同的列并适当地分配它。任何人都可以帮忙吗?
languagefile.txt 读取:语言 isocode
english.txt 读取:字段值
我希望它遍历两个文件并关联 isocode & filename & field & value。
我有一个执行english.txt 文件的while 循环:
cat english.txt| while read FIELD VALUE; do
GET https://googleapis.com/language/translate/v2?key=$mykey&q=$VALUE&source=en&target=es
echo "$FIELD "$VALUE"; done
但是我也需要扩展它来解释语言文件。所以它会喜欢:
cat english.txt| while read FIELD VALUE; do
GET https://googleapis.com/language/translate/v2?key=$mykey&q=$VALUE&source=en&target=$isocode
echo "$ISO $FIELD "$VALUE" >> $Language.txt; done
我希望这是有道理的。我最终只需要让它为每种语言和iso代码都做。不确定最佳方法