Skip to content
Advertisement

Running a python script via crontab does not accept parameters containing %

I have a python script that accepts custom parameters via sys and getopt modules. The cron job looks like:

JavaScript

I have narrowed down this problem to the first argument TSX.AP%.

This is a parameter that I take to execute a DB query.

If I add the wildcard % inside my script, therefore only passing TSX.AP to cron, the crojob works. This also works if i paste the command directly inside the terminal like this:

JavaScript

Now I am thinking to add another argument to specify wether the wildcard needs to be added or not, but I would like to understand if there is a better solution and also this problem made me lose almost the whole day troubleshooting I really want to understand what it happening!

Thanks in advance!

Advertisement

Answer

From man 5 crontab:

JavaScript

In particular: Percent-signs (%) in the command, unless escaped with backslash (),

A simple work-around would be to put /HS/py/py_venv/venv/bin/python /HS/py/py_venv/src/SP/yh_scrape_product_info.py -c TSX.AP% -vpn False in a bash script and run that from cron.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement