Hi I am using this command as a cron to clean old backups: /usr/bin/find /backup/ -type d -mtime +1 -print0 | /usr/bin/xargs -0 /bin/rm -rf When i run it from ssh it works but not on cron :( My cron: 55 5 * * * /usr/bin/find /backup/ -type d -mtime...