LDAPAccountManager/lam-packaging/getVersion

9 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;
?>