This is what happens when I run it. Very cosmetic bug. #webapp-config --list-servers apache-basic.sh"
*** Bug 72159 has been marked as a duplicate of this bug. ***
I think that's the expected behavior .... Anyway, that quote is annoying. Reason -- escaped quotes. Real easy to fix, but someone has to do it. Probably by quoting the backquoted command. < echo `basename \"$x\" .sh` > echo "`basename \"$x\" .sh`" Actually, you don't even need the "echo": < echo `basename \"$x\" .sh` > basename "$x" .sh
reassigning
Fixed in webapp-config v1.50