Centos Linux find cpu model and name

I know I can use cpuinfo file to find cpu model on CentOS server

cat /proc/cpuinfo

The file is too big. Is there easy to read format that just shows cpu model and make like we see on Windows server?

Never mind found after posting this I found lscpu command.

lscpu
lscpu | grep 'Model name'

It says what I needed:

lscpu

I posted answer as it might be useful to someone.