kmdr does not explain looping constructs
ediardo opened this issue ยท 0 comments
ediardo commented
Expected behavior:
kmdr should explain commands inside of looping constructs like until
, while
and for
.
Actual behavior:
the client does not explain commands.
Output:
$ kmdr e
๐ก Enter your command: s="-<";while true;do echo -ne "$s\r";s=`sed '
s/->$/-<-/;s/^</>/;s/-</<-/;s/>-/->/;'<<<$s`;sleep 0.1;done
s=-<
A variable passed to the program process
;
Commands separated by a ; are executed sequentially; the shell w
aits for each command to terminate in turn. The return status is the
exit status of the last command executed.
๐ค Is this helpful? (Use arrow keys)
โฏ Skip & Exit
โโโโโโโโโโโโโโ
Yes
No