Guest User

Untitled

a guest
Aug 15th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?php
  2. echo "<pre>";
  3. echo "Temperature Data:<br/>";
  4. system("/usr/bin/sensors");
  5.  
  6. echo "UPS Data<br/>";
  7. system("/usr/bin/apcaccess");
  8. echo "<br/>";
  9.  
  10. echo "Disk Data<br/>";
  11.  
  12. $logdir = "/var/log/smart/";
  13. $handle = opendir($logdir);
  14.  
  15. while(false !== ($file = readdir($handle)))
  16. {
  17. if($file != "." && $file != "..")
  18. {
  19. echo file_get_contents($logdir.$file);
  20. }
  21. }
  22. echo "</pre>";
  23. ?>
Add Comment
Please, Sign In to add comment