tevslin
16 posts
|
where is there documentation for the commands which can be entered on the Eclipse console while debugging?
Thanks
|
kschultz
107 posts
|
If you type help at the command prompt it lists the ones available:
(: help Command___Usage__________________________Description__________________________________________________________________ bundles [filter] Returns a list of bundles present in current OSGi runtime environment. consumers [(bundle id | bundle name)]... Returns a list of services that each bundle consumes is currently consuming. exit exit Stop all bundles and shutdown OSGi runtime. headers bundleId [filter] Returns the headers for a given bundle. help help [filter] Print table of currently available commands. install bundle_URL Install a bundle from the given URL. printenv [filter] Returns the system settings. printlog [filter] Displays log messages. producers [(bundle id | bundle name)]... Returns a list of services that each bundle is currently offering. quit quit Stop the shell bundle. restart restart Stop and restart all active bundles. services [(bundle id | bundle name)]... Returns a list of services present in the runtime. start (bundle_Id | bundle_name)... Starts the specified bundle. stop (bundle_Id | bundle_name)... Stops the specified bundle. update (bundle_Id | bundle_name)... Updates the specified bundle.
|
tevslin
16 posts
|
Thanks. That does it.
Tried "? and "dir" and a few others. should’ve though of that.
|