mirror of
https://github.com/myvesta/vesta.git
synced 2024-11-21 04:50:10 -08:00
43 lines
1.1 KiB
Bash
Executable File
43 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# info: list system cpu info
|
|
# options: [FORMAT]
|
|
#
|
|
# The function lists cpu information
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Variable&Function #
|
|
#----------------------------------------------------------#
|
|
|
|
# Argument definition
|
|
#format=${1-shell}
|
|
|
|
# Includes
|
|
#source $VESTA/func/main.sh
|
|
|
|
|
|
#----------------------------------------------------------#
|
|
# Action #
|
|
#----------------------------------------------------------#
|
|
|
|
# Displaying top 30
|
|
top -b -n1 | head -n 37
|
|
echo -en "\n-------------------------------------"
|
|
echo -en "-------------------------------------\n\n"
|
|
|
|
# Displaying process tree
|
|
pstree -s
|
|
echo -en "\n-------------------------------------"
|
|
echo -en "-------------------------------------\n\n"
|
|
|
|
# Displaying CPU information
|
|
grep 'model name' /proc/cpuinfo|cut -f 2 -d : | sed "s/ //"
|
|
echo
|
|
lscpu 2>/dev/null
|
|
|
|
#----------------------------------------------------------#
|
|
# Vesta #
|
|
#----------------------------------------------------------#
|
|
|
|
exit
|