Put the one-liner into the script.

This commit is contained in:
Simon Quigley 2019-02-12 23:08:01 -06:00
parent d08e583ea3
commit 7b9d890249

View File

@ -0,0 +1,3 @@
#!/bin/bash
rm -rf weblate && for i in *; do (mkdir -pv weblate/$i; cd weblate/$i; for e in `find ../../$i | grep .po`; do ln -s $e .; done); done