Created
April 17, 2018 13:49
-
-
Save vholer/4cdfb3c4535d6f6ed29a4d78c0adca40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# -------------------------------------------------------------------------- # | |
# Copyright 2002-2018, OpenNebula Project, OpenNebula Systems # | |
# # | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may # | |
# not use this file except in compliance with the License. You may obtain # | |
# a copy of the License at # | |
# # | |
# http://www.apache.org/licenses/LICENSE-2.0 # | |
# # | |
# Unless required by applicable law or agreed to in writing, software # | |
# distributed under the License is distributed on an "AS IS" BASIS, # | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # | |
# See the License for the specific language governing permissions and # | |
# limitations under the License. # | |
#--------------------------------------------------------------------------- # | |
MODEL='' | |
if [ -f /proc/cpuinfo ]; then | |
for NAME in 'model name' 'cpu'; do | |
MODEL=$(grep -m1 "^${NAME}[[:space:]]*:" /proc/cpuinfo | \ | |
cut -d: -f2 | \ | |
sed -e 's/^ *//') | |
if [ -n "${MODEL}" ]; then | |
break | |
fi | |
done | |
fi | |
if [ -n "${MODEL}" ]; then | |
echo "MODELNAME=\"${MODEL}\"" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment