diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2014-01-20 16:20:32 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2014-01-20 16:20:32 +0000 |
commit | 88ca84d56113fa5228a1fd9297d7c16fdafa7c47 (patch) | |
tree | 293b40290f21b41b2096162db942b6e8bc27af34 /bin | |
parent | f2b3760ce564c9119600dace26f59799503f81ef (diff) |
Add a %age completion.
Change-Id: I6066d42abddcefc9d7fe4bd19477a11294b138b2
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/count-todo-dialogs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/count-todo-dialogs b/bin/count-todo-dialogs index fdb6fbbd3b87..27f5f3c5f981 100755 --- a/bin/count-todo-dialogs +++ b/bin/count-todo-dialogs @@ -22,3 +22,7 @@ echo There are $tabpages unconverted tabpages num=$(($dialogs + $tabpages)) echo An estimated additional $num .ui are required + +percent=$(($converted * 100 / ($num + $converted))) +echo We are $percent% of the way through. + |