mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 20:47:15 +01:00
29 lines
567 B
PHP
29 lines
567 B
PHP
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
|
||
|
/**
|
||
|
* This example can be used to logfile processing and basically wraps the tail
|
||
|
* command.
|
||
|
*
|
||
|
* The benefit of using this, is that it allows you to tail multiple logs at
|
||
|
* the same time
|
||
|
*
|
||
|
* To stop this application, hit CTRL-C
|
||
|
*/
|
||
|
if ($argc < 2) {
|
||
|
echo "Usage: " . $argv[0] . " filename\n";
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
require __DIR__ . '/../vendor/autoload.php';
|
||
|
|
||
|
$tail = popen('tail -fn0 ' . escapeshellarg($argv[1]), 'r');
|
||
|
|
||
|
\Sabre\Event\Loop\addReadStream($tail, function() use ($tail) {
|
||
|
|
||
|
echo fread($tail, 4096);
|
||
|
|
||
|
});
|
||
|
|
||
|
$loop->run();
|