Thanks for the explanation.  I asked about the naming because it's a little confusing to call a function named RunShellCommand and then pass it an argument that says "by the way, don't run that in a shell".  It's a real head-scratcher.<br><br><div class="gmail_quote">On Mon Dec 08 2014 at 3:00:36 PM <<a href="mailto:jingham@apple.com">jingham@apple.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Running in the shell is fragile, and for the most part (particularly when running GUI apps that don't really take command line arguments) an unnecessary complication.  On a released OS with fully working shell & tools, this isn't so much of an issue.  But the debugger is a tool that's got to survive on pretty bad OS versions to be useful.  So the ability to get the shell out of the way for debugging is necessary from time to time.<br>
<br>
I think the reason for using "run in shell" rather that "shell expansion" as the words for the setting is to emphasize that we aren't emulating shell expansion, but rather using your actual shell to prepare the command arguments.<br>
<br>
Jim<br>
<br>
<br>
> On Dec 8, 2014, at 2:42 PM, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
><br>
> I was thinking about how to best structure Host::RunShellCommand and ProcessLaunchInfo::<u></u>ConvertArgumentsForLaunchingIn<u></u>Shell based on previous discussions with greg.<br>
><br>
> One thing I don't understand is why we need this use_default_shell argument.  For starters, it seems like a better name for this argument would be requires_shell_expansion.  As in, you should pass true if your command string might contain environment variables, commands stringed together with &&, etc.  And pass false otherwise.<br>
><br>
> Is there any reason to not just always run it in a shell?  just delete that argument to the function and let it always be true?  It makes the code simpler and I don't see what the advantage is to letting it be false.  The end result is still the same.<br>
> ______________________________<u></u>_________________<br>
> lldb-dev mailing list<br>
> <a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/lldb-dev</a><br>
<br>
</blockquote></div>