Move stow to bin and add argument count check

This commit is contained in:
Tim 2025-03-18 01:17:24 +01:00
parent bc0a7fddde
commit e6159e4f0d

View File

@ -16,6 +16,11 @@ $action = 'stow';
$backup = $force = false;
array_shift($argv); // we don't care about the script name
if(count($argv) === 0) {
line("Usage: stow [-u] [-b] [-f] <stow-directory>");
exit(1);
}
while (str_starts_with($argv[0], '-')) {
$option = substr($argv[0], 1);
switch ($option) {