Delete Files Older Than x Days on Linux
Command Syntax find /folder/files* -mtime +15 -exec rm {} \;find /folder/files* -mtime +15 -exec rm {} \; The first argument is the path to the files. This can be a […]
Command Syntax find /folder/files* -mtime +15 -exec rm {} \;find /folder/files* -mtime +15 -exec rm {} \; The first argument is the path to the files. This can be a […]
Usually I open more than on instance of tail -f to monitor my application, so, to kill all with one single command I can use this: ps -ef | grep […]
The script is a very helpful to show how much RAM is used by single process. This script is written by Pádraig Brady, He can be contacted at P@draigBrady.com. The […]