I have two servers Debian Squeeze 32 and Ubuntu 11.10 Server 64. The same script with the same command behaves very different.
Script test.php:
<?php for ($i = 0; $i < 5; $i++) { echo $i, "\n"; sleep(1); }
Command:
php -q test.php &
ps | grep php
Debain: I see numbers being printed and process title is php -q test.php as expected. pidof "php -q test.php" works fine.
Ubuntu: No numbers; process title is php. pidof "php -q test.php" does not work and I can't use pidof php.
What's wrong with Ubuntu?
Update WOW! pgrep -f "php -q test.php" works well while pidof "php -q test.php" doesn't.
Update 2 I'm not sure if this may apply, but under Debian I'm working in a regular console, while Ubuntu is being accessed by SSH.
/usr/bin/php -q test.php &thenps | grep phpproduces absolutely the same.phpis the title andpidofbehaves the same. – Pavel Koryagin Jan 9 at 20:00