Hi comaX, to correct those errors you need for example in line 79: Code: if [[ $(grep "0" ./test.txt) == "" ]]; then the following: Code: if [[ "$(grep "0" ./test.txt)" == "" ]]; then that is "$(blabla)" type of thing. You have this in many ifs but not everywhere and ash is strict about (bash can handle those).
if [[ $(grep "0" ./test.txt) == "" ]]; then
if [[ "$(grep "0" ./test.txt)" == "" ]]; then