CRONTAB
Crontab (CRON TABLE) is a file which contains the schedule of cron entries to
be run and at specified times.
INTERVAL INFO :
|
||||||||||||||||||
SYNTAX AND EXAMPLE
§ If you wished to have a
script named /root/backup.sh run every day at 3am, your crontab entry would
look like as follows.
# crontab -e
Append the following
entry:
0 3 * * * /root/backup.sh
TIP :
To delete GDE-WATHERS created by users , USERS can add this in their DEV
§ 00 10 * * * find
/EME/dev/src/developers/${USER} /home/${USER} /var/stage/abinitio/data/dev/
-name 'GDE-WATCHER-*' -user ${USER} -mtime +1 | xargs -i rm -f {}
REFERENCE
§
CRONTAB is used in abadmq* users of hq1adwq01 server.
AREA OF USAGE
§
Periodic cleanup
1. GDEwatchers
2. Recovery file
3. Data file older than 90 days
4. Moving files to backup
|
STRING FUNCTION String _split : Splits the given string by the specified delimiter. Output of this function will be a vector value. String_split_no_empty: This function behaves as same as string_split function. But only difference is, this function will remove empty strings from the result set. String_index: The function returns the index of the first character in the first occurrence of the string. a. Index numbering of the string starts with 1. b. If the string length is zero, then the functions returns 1. c. If the string is not pres...