LDAPAccountManager/lam-packaging/getVersion

9 lines
125 B
Plaintext
Raw Permalink Normal View History

2006-01-20 16:40:30 +00:00
#!/usr/bin/php
<?php
$file = fopen("lam/VERSION", "r");
$line = fgets($file, 100);
$line = trim($line);
echo $line;
exit;
?>