From 842c9902c05a051a1ee8cd2957c9f8d81b707d9c Mon Sep 17 00:00:00 2001 From: tv Date: Sun, 31 Jul 2011 02:33:49 +0200 Subject: translate.google: initial commit --- util/bin/translate.google | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 util/bin/translate.google (limited to 'util/bin/translate.google') diff --git a/util/bin/translate.google b/util/bin/translate.google new file mode 100755 index 00000000..50d37cc3 --- /dev/null +++ b/util/bin/translate.google @@ -0,0 +1,29 @@ +#! /bin/sh +set -euf + +A=Mozilla +url=http://translate.google.com/ + +{ + for arg; do echo "$arg"; done | sed -rn ' + s/^--(.*=.*)/\1/p;t + s/.*/text="${text+$text }&"/p;t + ' + cat< Date: Sun, 31 Jul 2011 02:36:09 +0200 Subject: translate.google: esnure query is ready --- util/bin/translate.google | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'util/bin/translate.google') diff --git a/util/bin/translate.google b/util/bin/translate.google index 50d37cc3..56cd7ee0 100755 --- a/util/bin/translate.google +++ b/util/bin/translate.google @@ -4,6 +4,11 @@ set -euf A=Mozilla url=http://translate.google.com/ +pwd="$(dirname "$(readlink -f "$0")")" + +# ensure query is ready +(cd "$pwd/../.." && git submodule update --init) + { for arg; do echo "$arg"; done | sed -rn ' s/^--(.*=.*)/\1/p;t @@ -11,7 +16,7 @@ url=http://translate.google.com/ ' cat<