<div dir="ltr">I looking at <a href="https://llvm.org/bugs/show_bug.cgi?id=22968">bug 22968</a> and trying to figure out if there's a bug here or not.<div><br></div><div>The `run` command alias ends with `--`, so there doesn't seem to be a way to specify options when using the alias.  For example, if you do:</div><div><br></div><div>    (lldb) run -s</div><div><br></div><div>That's treated as though you wrote:</div><div><br></div><div>    (lldb) process launch -c<shell-path> -- -s</div><div><br></div><div>The `-s` argument is placed after the `--`, which causes it to be passed on to the inferior and not treated as an option to the `process launch` command.  That's consistent but possibly surprising behavior.  If you wanted the `-s` on the command, you'd have to spell it out explicitly:</div><div><br></div><div>    (lldb) process launch -c<shell-path> -s</div><div><br></div><div>Should there be an alias that doesn't end in `--`?</div><div><br></div><div>Thanks,</div><div>Adrian McCarthy</div></div>