Simple command line?

etchingsj

ADSM.ORG Member
Joined
Feb 5, 2008
Messages
242
Reaction score
7
Points
0
Location
Lost Wages NV
Is there a simple command line to create a text file to display all the NBU clients known to the master and their current client code level?

Thanks in advance,
 
for i in `bppllist -l -allpolicies | grep CLIENT | awk '{print $2}' | sort -u`
> do
> echo $i
> bpgetconfig -s $i -A -L | egrep "Version|Patch|Platform"
> done
 
Back
Top