Is there are way to send several commands on the same line using the spring-shell. For example:
shell> add 1 2; add 3 4
3
7
I've noticed that if I run my application from Intellij, I can copy paste several commands and it will work correctly:
add 1 2
add 3 4
But it doesn't work when I run the executable jar in bash. I think it's because the Terminal is different. In Intellij it's a DumbTerminal, when I run it in bash it's a PosixSysTerminal