Quote:
Originally Posted by geekmaster
EDIT: If you examine my source code, you will see that I like to write solid condensed code,
...
Please keep modifications to my code that you post here in my condensed style so that I can reuse it.
|
Sure. In its time I liked
APL too

though it bit me more than once.
I just want to plead innocence and point that on my KK v3.3 (blame it on an older or perhaps buggy shell interpreter) I had to

expand constructs such as
Code:
while [[ $x0 -ne $x || $y0 -ne $y ]];do
into
Code:
while [[ $x0 -ne $x ]] || [[ $y0 -ne $y ]];do
to make the script work (loop would otherwise fail with an error message).