From: Christian Weiske Date: Tue, 1 Dec 2015 20:45:31 +0000 (+0100) Subject: less verbose output X-Git-Url: https://git.cweiske.de/dimplex-tools.git/commitdiff_plain/877fc20ab3a491ff49247fa2a08565ec53c6ce30 less verbose output --- diff --git a/dimplex-minus b/dimplex-minus index affbf40..a03722e 100755 --- a/dimplex-minus +++ b/dimplex-minus @@ -10,7 +10,6 @@ if [ "$setting" != "$setting2" ]; then fi newsetting=$(($setting - 1)) -echo New: $newsetting if [ $newsetting -gt 30 ]; then echo "New value too high" @@ -22,5 +21,3 @@ if [ $newsetting -lt 10 ]; then fi dimplex-set $newsetting - -echo Done diff --git a/dimplex-plus b/dimplex-plus index a8174cc..5cde3e6 100755 --- a/dimplex-plus +++ b/dimplex-plus @@ -10,7 +10,6 @@ if [ "$setting" != "$setting2" ]; then fi newsetting=$(($setting + 1)) -echo New: $newsetting if [ $newsetting -gt 30 ]; then echo "New value too high" @@ -22,5 +21,3 @@ if [ $newsetting -lt 10 ]; then fi dimplex-set $newsetting - -echo Done