The basic format of a crontab schedule consists of 6 fields, separated by spaces, formatted as follows:
minute hour day month day-of-week command-line-to-execute
The acceptable values for each of the 6 fields are:
Field Range [...]
Archive for the ‘unix’ Category
Cron jobs
Posted in unix on July 16, 2009 | Leave a Comment »
How to find a String or text value in specific type of files in Linux
Posted in unix on May 18, 2009 | Leave a Comment »
I am not trying to post a grep or find reference manual but the below command will come handy in the following situations, (when searching in Java files)
To search for TODO in code
To search for System.out.println in code
find . -name “*.java” |xargs grep TODO