lam/lam-packaging/getVersion
2006-01-20 16:40:30 +00:00

8 lines
125 B
PHP
Executable file

#!/usr/bin/php
<?php
$file = fopen("lam/VERSION", "r");
$line = fgets($file, 100);
$line = trim($line);
echo $line;
exit;
?>