1

我需要一个命令来仅获取 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?

问候,哈利

4

2 回答 2

5

怎么样:

la | grep -i active

其中 la 是 osgi:list 的快捷方式,其中列出了包括系统在内的所有捆绑包。

于 2014-03-07T07:40:13.460 回答
0

采用

la | grep '| Active    |'

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

于 2014-11-22T22:26:32.000 回答