Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wbemcli(1) [debian man page]

PYWBEM(1)							wbemcli User Manual							 PYWBEM(1)

NAME
wbemcli - utility to wrap up a PyWBEM session in a Python interactive console SYNOPSIS
wbemcli HOSTNAME [-u USERNAME -p PASSWORD] [-n NAMESPACE] [--no-ssl] [--port PORT] DESCRIPTION
This manual page documents briefly the wbemcli command. This manual page was written for the Debian distribution because the original program does not have a manual page. wbemcli is small utility to wrap up a PyWBEM session in a Python interactive console. CIM operations can be executed by using the PyWBEM connection object called 'cli' in the global scope. There are two sets of aliases available for usage in the interpreter. For example the following three commands are equivalent: >>> cli.EnumerateInstanceNames('SMX_ComputerSystem') >>> EnumerateInstanceNames('SMX_ComputerSystem') >>> ein('SMX_ComputerSystem') Pretty-printing of results is also available using the 'pp' function. For example: >>> cs = ei('SMX_ComputerSystem')[0] >>> pp(cs.items()) [(u'RequestedState', 12L), (u'Dedicated', [1L]), (u'StatusDescriptions', [u'System is Functional']), (u'IdentifyingNumber', u'6F880AA1-F4F5-11D5-8C45-C0116FBAE02A'), .. AUTHOR
Bernd Zeimetz <bzed@debian.org> Wrote this manpage for the Debian system. COPYRIGHT
Copyright (C) 2009 Bernd Zeimetz This manual page was written for the Debian system (and may be used by others). The description was taken from wbemcli.py and is (C) Copyright 2008 Hewlett-Packard Development Company, L.P. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Lesser General Public License, Version 2 or (at your option) any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/LGPL-2. wbemcli 12/26/2009 PYWBEM(1)

Check Out this Related Man Page

JUMPAPPLET(1)							   User commands						     JUMPAPPLET(1)

NAME
jumpapplet - notification icon for autojump SYNOPSIS
jumpapplet DESCRIPTION
This manual page documents briefly the jumpapplet command. It was written for the Debian distribution because the original program does not have a manual page. jumpapplet is an applet that provides a notification icon based on autojump(1). OPTIONS
This program has no options FILES
~/.jumpapplet.py Configuration file for jumpapplet BUGS
jumpapplet uses a configuration file in a format that is not really human-friendly. Thus, it should be configured by using its graphical interface. AUTHOR
Tanguy Ortolo <tanguy+debian@ortolo.eu> Wrote this manpage for the Debian system. COPYRIGHT
Copyright (C) 2010 Tanguy Ortolo This manual page was written for the Debian system (and may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 3 or (at your option) any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. jumpapplet 05/26/2012 JUMPAPPLET(1)
Man Page

We Also Found This Discussion For You

1. Shell Programming and Scripting

Requesting help with shell script

I have been viewing man pages and using google with little luck so far. I am writing a shell script using wbemcli. I can execute the command and get the results I need just fine. ex. wbemcli -nl ein 'http://<username>:<password>@<host>/<targetpc>/root/wmi:MSAcpi_ThermalZoneTemperature' ... (3 Replies)
Discussion started by: Scott Post
3 Replies