"\n\n" incorrectly parsed
fn printArg arg
echo -e "\n\n$arg"
end
printArg todo
outputs
ntodo
instead of the expected
todo
Note that the problem doesn't arise with "\n$arg"
.
Edited by ngirard
fn printArg arg
echo -e "\n\n$arg"
end
printArg todo
outputs
ntodo
instead of the expected
todo
Note that the problem doesn't arise with "\n$arg"
.