View Single Post
Posts: 83 | Thanked: 142 times | Joined on Jun 2011 @ Paris, France
#155
Originally Posted by Saturn View Post
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).
Yeah, I noticed ash is pretty strict ! But also pretty cool on some point, especially echo, for instance.
I'm working on all those operand errors, but as I said earlier, I'm in the middle of a moving out, so it might take some time !

Also, now that the dependencies check works in ash, I'll introduce looking for different paths
How should the script react to a missing dependency ? Just a warning ? Exiting ?
__________________
http://comax.fr/
"I like to dissect girls. Did you know I am utterly insane ?"
 

The Following User Says Thank You to comaX For This Useful Post: