cmd Arg1 "Argument 2" Arg3 Argument\ 4, similar to bash
\n is now a line break, and can be escaped with \\n${...} is now used for substitutions, and can be escaped with \${...}.
This also proposes using Just instead of GNU Make so @tbodt doesn't have to feel bad about us abusing the almighty Make by treating it as a simple command runner.
Definitely a breaking change. New syntax:
cmd Arg1 "Argument 2" Arg3 Argument\ 4
, similar to bash\n
is now a line break, and can be escaped with\\n
${...}
is now used for substitutions, and can be escaped with\${...}
.This also proposes using Just instead of GNU Make so @tbodt doesn't have to feel bad about us abusing the almighty Make by treating it as a simple command runner.