mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 20:04:59 +00:00
Shell: Expand Juxtaposition of lists to list products
This commit makes `echo x(foo bar)` create an argv of `echo xfoo xbar`, essentially modeling brace expansions in some shells.
This commit is contained in:
parent
16def040af
commit
8e078cf4ab
5 changed files with 119 additions and 68 deletions
|
@ -324,7 +324,7 @@ int Shell::run_command(const StringView& cmd)
|
|||
if (!command)
|
||||
return 0;
|
||||
|
||||
#ifdef SH_DEBUG
|
||||
#ifndef SH_DEBUG
|
||||
dbg() << "Command follows";
|
||||
command->dump(0);
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue