Exécuter le script Shell tous les 2 jours

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