Skip to content

Instantly share code, notes, and snippets.

@lorenzos
Created January 30, 2013 10:43
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lorenzos/5cbf78a4447e1a98b59f to your computer and use it in GitHub Desktop.
Save lorenzos/5cbf78a4447e1a98b59f to your computer and use it in GitHub Desktop.
<?php
function tailShell($filepath, $lines = 1) {
ob_start();
passthru('tail -' . $lines . ' ' . escapeshellarg($filepath));
return trim(ob_get_clean());
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment