Thursday, July 27, 2017

▷ H/W model (H/W 모델)

AIX prtconf | awk -F: '/^System Model:/ { print $2 }' | sed -e 's/IBM,//' or uname -M
HP-UX model
SunOS (i386) smbios -t SMB_TYPE_SYSTEM | grep Product | awk -F: '{ print $2 }'
(sparc) prtdiag | grep 'System Configuration' | sed -e 's/sun4[uv] /@/' | awk -F'@' '{ print $2 }'
Linux dmidecode -s system-product-name | egrep -v '^#|^$'
Windows (wmic computersystem get Model | findstr /v "^$" | select -Last 1).Trim()

No comments:

Post a Comment

◈ Recent Post

▷ UITest demo with TestOne (Mobile, Keypad and Drag until found tip)

[ UITest Demo Environment ] 1. UITest Solution: TestOne 2. Description 데모 설명    How to use keypad, and to drag until found.     키패드를...

◈ Popular Posts