Execute script de shell a cada 2 dias
0 23 * * * insert_your_script_here.sh
#!/bin/sh
if [ -f /tmp/altday.txt ]; then
rm /tmp/altday.txt
exit
fi
touch /tmp/altday.txt
Better Buffalo