22 lines
354 B
Plaintext
22 lines
354 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# The example script collects information about current host
|
||
|
#
|
||
|
|
||
|
set -ue
|
||
|
|
||
|
LC_ALL=C
|
||
|
export LC_ALL
|
||
|
|
||
|
grep 'model name' /proc/cpuinfo | uniq | awk -F': ' '
|
||
|
// { printf("cpu_model=%s\n", $2);}
|
||
|
'
|
||
|
echo "kernel=$(cat /proc/version)"
|
||
|
|
||
|
cat /proc/meminfo | awk '
|
||
|
/MemTotal/ {printf("mem_total_kB=%d\n", $2)}
|
||
|
'
|
||
|
|
||
|
echo "hostname=$(cat /etc/hostname)"
|
||
|
|