summaryrefslogtreecommitdiff
path: root/shell/bin/cat.php
blob: fab98838ce79f44c25625b17f5f4671bed834522 (plain)
1
2
3
4
5
6
7
<?php
function main($args) {
	$me = array_shift($args);
	foreach ($args as $file) {
		echo htmlentities(file_get_contents($file));
	}
}