Initial commit.

This commit is contained in:
Johannes Findeisen 2024-02-07 09:27:22 +01:00
commit 317e1b4e10
13 changed files with 260 additions and 0 deletions

14
uname/uname.php Normal file
View file

@ -0,0 +1,14 @@
---
permalink: /cgi/uname/
---
<?php
$uname = shell_exec('uname -mrs');
$pos = strpos($uname, '-', 0);
$res = substr($uname, 0, $pos);
header('Content-Type: text/plain');
echo($res);
?>