mirror of
https://github.com/boostorg/website.git
synced 2026-01-27 19:32:16 +00:00
11 lines
333 B
PHP
11 lines
333 B
PHP
<?php
|
|
/*
|
|
Copyright 2007 Redshift Software, Inc.
|
|
Distributed under the Boost Software License, Version 1.0.
|
|
(See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
header('Content-type: text/plain');
|
|
$file_handle = popen("ls -laF /var/log/httpd",'r');
|
|
fpassthru($file_handle);
|
|
pclose($file_handle);
|
|
?>
|