I want to run cron from the shell directly by calling cron.php or some version of it to avoid executing PHP from apache and use less system resources that way. I've found some instructions here:
http://www.zimplicit.se/en/knowledge/how-run-cron-drupal-6-shell-script-correct-paths
But when I do what's suggested there and I call cron.php clone script (that "fullpathcron.php" script) it just exists and cron is not executed. You can (probably see me question bellow the article).
Any idea why or what's a proper way to run Drupal 6 cron task from shell?
Even more...will I get some noticeable benefits from that?
Solved.
Instead of setting $_SERVER variables as described in that example I used part from /scripts/drupal.sh
and it works now.