⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 select_cli

📁 Pegasus is an open-source implementationof the DMTF CIM and WBEM standards. It is designed to be por
💻
字号:
#!/bin/bash# # The following set of commands tests the new Classes configured through the# sample provider interface.# # $1 = CIM Operation abbreviation accepted by the CLI command.# if [ ! -n "$1" ]then	echo "Requires cim operation as a command arg."	exitelse	rm -f $1-auth.log	CLI $1 -n root/SampleProvider CIMOMSample 2>&1 | tee $1-auth.log	CLI $1 -n root/SampleProvider CIMOMSample -u guest -p nothing 2>&1 | tee -a $1-auth.log	CLI $1 -n root/SampleProvider CIMOMSample -u guest -p guest 2>&1 | tee -a $1-auth.log	CLI $1 -n root/SampleProvider CIMOMSample -u subodh -p soni 2>&1 | tee -a $1-auth.logfi

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -