Posts

Showing posts from March, 2014

Google Ads

How to run a command or application with a different CPU priority in Windows 7 using DOS command

Use the "start" command in command line to start a command or application with different CPU priority. start /[priority] [command or path to application] The priorities are:

How to run a command with a different CPU priority in Linux

Use nice to start a command with a different CPU priority in Linux. nice -n [num] [command with arguments] The nice number range from 19 to -20. 0 is the normal priority, 19 is the lowest priority and -20 is the highest priority. However, you will need admin rights to use -20.

How to find and delete files using command in Linux

How to use the command line in Linux to perform find/search and delete files.