church-notes/references/copy-files.php

11 lines
98 B
PHP
Raw Normal View History

2024-04-12 22:50:20 -04:00
<?php
$cmd = getopt('f:');
$f = $cmd['f'] ?? null;
if (!$f) {
exit(1);
}
$file = file($f);