Files
helpers/active-users
2026-06-22 14:43:18 +02:00

13 lines
313 B
PHP
Executable File

#!/usr/bin/php
<?php
$jsonFile = '/opt/html/online.json';
$activeUsers = shell_exec("who | awk '{print $1}' | sort | uniq");
$activeUsersArray = array_filter(explode("\n", $activeUsers));
$activeUsersJson = json_encode($activeUsersArray, JSON_PRETTY_PRINT);
file_put_contents($jsonFile, $activeUsersJson);
?>