Renamed from “utstodate.php”

This commit is contained in:
pezcurrel 2023-11-02 08:07:55 +01:00
parent 9a606c059a
commit 41182ecb5b

10
web/clitools/uts2date.php Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/php
<?php
const N="\n";
if (!isset($argv[1]) || preg_match('/^\d+$/',$argv[1])!==1) {
echo('utstodate.php <unix timestamp>'.N);
exit(1);
}
echo(date('Y-m-d H:i:s',$argv[1]).N);
exit(0);
?>