Karthick created KARAF-3292:
-------------------------------
Summary: Karaf Client Script to recognise a delimiter (: or ;) so
that multiple commands can be executed at once
Key: KARAF-3292
URL: https://issues.apache.org/jira/browse/KARAF-3292
Project: Karaf
Issue Type: Wish
Components: karaf-core
Affects Versions: 4.0.0.M1
Environment: Any Operating system
Reporter: Karthick
Priority: Trivial
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.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)