Details
Description
The Karaf bin/client command can be used to connect to the karaf shell and execute one command at a time.
Scenario:
If I wanted to install 10 bundles at a time, I would have to run the client command 10 times, each time passing in the argument one by one.
So time to install a bundle is = connect time + install time + disconnect time.
time to install 10 bundles is = 10 * (connect time + install time + disconnect time).
Wish:
is to be able to give multiple commands at a time like
bin/client "install bundle1; install bundle2; install bundle3; install bundle4;..."
so that time to install 10 bundles would be now
=connect time + (10 * install time) + disconnect time.