Hello all. I use
this way for running crons. I make a file named
something.sh for example, encluding the following:
#!/bin/sh
#$ -j y
#$ -o /dev/null
cd pywikipedia
python anyscript.pyThen, I put a cron like:
00 21 * * * cronsub -s something % sh $HOME/something.sh
The problem is that I want my crons to stop producing output files at "home" folder inside my account, I don't want it to produce outputs at all. How can I do that?
--
User:Avocato--