Create cron job for update translations automatically

I found wp cli based solution. These below commands are useful for update translate files for core, themes and plugins:

wp language core update
wp language theme update --all
wp language plugin update --all

To schedule these commands, insert this line in crontab:

30 0 * * * wp language core update ; wp language theme update --all ; wp language plugin update --all

It will update all translate files once a day.

Shorter version of cron job:

30 0 * * * for i in "core update" "theme update --all" "plugin update --all"; do sudo wp  language $i; done