You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							939 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							939 B
						
					
					
				#!/bin/bash
 | 
						|
# info: list system cpu info
 | 
						|
# options:
 | 
						|
#
 | 
						|
# example: v-list-sys-cpu-status
 | 
						|
#
 | 
						|
# This function lists cpu information
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       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
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
exit
 |