diff --git a/stow b/bin/bin/stow similarity index 95% rename from stow rename to bin/bin/stow index b604e7c..283440b 100755 --- a/stow +++ b/bin/bin/stow @@ -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] "); + exit(1); +} + while (str_starts_with($argv[0], '-')) { $option = substr($argv[0], 1); switch ($option) {