Because scl enable rh-python36 create new virtual environment for Python, within this environment, you can use your installed Python 3.6 but this virtual environment not applied automatically while running in a crontab.
So, in order … Read more
DevOps World
Because scl enable rh-python36 create new virtual environment for Python, within this environment, you can use your installed Python 3.6 but this virtual environment not applied automatically while running in a crontab.
So, in order … Read more
This post will guide you setup a crontab to run every weekends (Saturday & Sunday) at 0:01 am.
Cmd: | 1 | 0 | * | * | 0,6 | /cfg9/app.sh |
minute(s) | hour(s) in 24h format | day(s) of month | month |
This post will guide you setup a crontab to run every weekends (Saturday & Sunday) at 0:00 am.
Cmd: | 0 | 0 | * | * | 0,6 | /cfg9/app.sh |
minute(s) | hour(s) in 24h format | day(s) of month | month |
This post will guide you setup a crontab to run every weekends (Saturday & Sunday) at 1 am.
Cmd: | * | 1 | * | * | 0,6 | /cfg9/app.sh |
minute(s) | hour(s) in 24h format | day(s) of month | month |
This post will guide you setup a crontab to run every day from Monday to Friday at 1 am.
Cmd: | * | 1 | * | * | 1-5 | /cfg9/app.sh |
minute(s) | hour(s) in 24h format | day(s) of month |
This post will guide you setup a crontab to run every year at 1 am from 1st to 9th of all month from May to September.
Cmd: | * | 1 | 1-9 | 5-9 | * | /cfg9/app.sh |
minute(s) |
This post will guide you setup a crontab to run every year at 1 am from 1st to 9th of May and Jun
Cmd: | * | 1 | 1-9 | 5,6 | * | /cfg9/app.sh |
minute(s) | hour(s) in 24h |
This post will guide you setup a crontab to run every year at 1 am on 1st and 9th of May and Jun
Cmd: | * | 1 | 1,9 | 5,6 | * | /cfg9/app.sh |
minute(s) | hour(s) in 24h |
This post will guide you setup a crontab to run every year at 1 am on 1st of May and Jun
Cmd: | * | 1 | 1 | 5,6 | * | /cfg9/app.sh |
minute(s) | hour(s) in 24h format | day(s) |