Monday 19 October 2015

How to find out CPU details on the UNIX box?

# of CPUs + details:

vi /proc/cpuinfo

How to pause UNIX script and wait until we press ?

Sometimes the above scenario makes sense, we want to check some log files before proceeding with the next step.
The solution is to use:

"read -p"

More details in the above nice blog entry:

http://www.cyberciti.biz/tips/linux-unix-pause-command.html