Use the command:
lscpu
To know all your CPU Specs:
To get the specific frequency of your CPU use the command with a grep like so:
lscpu | grep MHz
It will give you output like:
CPU MHz: 2723.789
To see realtime CPU speeds fluctuation use :
watch -n1 "lscpu | grep MHz | awk '{print $1}'";
*