如何只获取karaf中的活动包

时间:2014-03-07 02:56:13

标签: osgi bundle state apache-karaf karaf

我需要一个命令才能获得osgi / karaf中的活动包,

I know that scr:list / osgi:list will list all the bundles irrespective of state. 

Is there any other easy way to check all the bundles are active in karaf?

此致 哈利

2 个答案:

答案 0 :(得分:5)

怎么样:

la | grep -i active

其中la是osgi的快捷方式:list包含列出所有包,包括system。

答案 1 :(得分:0)

使用

la | grep '| Active    |'

因为这会避免由于名称中包含“活动”的捆绑而导致的任何误报。