church-notes/references/copy-files.php
2024-04-12 22:50:20 -04:00

11 lines
98 B
PHP

<?php
$cmd = getopt('f:');
$f = $cmd['f'] ?? null;
if (!$f) {
exit(1);
}
$file = file($f);