Skip to content

Instantly share code, notes, and snippets.

@picasso250
Created January 25, 2018 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save picasso250/8cea4a3a3d42baf2de74c0e4692bd575 to your computer and use it in GitHub Desktop.
Save picasso250/8cea4a3a3d42baf2de74c0e4692bd575 to your computer and use it in GitHub Desktop.
tail for web
<?php
$f = isset($_GET['f']) ? $_GET['f'] : '';
if (!$f) {
die("plz specify f");
}
if (!is_file($f))
die("$f is not a file");
header("Content-Type:text/plain;charset=UTF-8");
$output = shell_exec("tail -n 20 $f");
echo "$output";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment