Quote shell variables correctly

This commit is contained in:
Ryan Schmidt 2022-11-15 15:11:31 -06:00
parent b65d31a08d
commit e2a89f719d
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ or create a shell script (in `/usr/local/bin`, etc)
#!/bin/sh
exec mpw AsmIIgs $@
exec mpw AsmIIgs "$@"
mpw uses the MPW `$Commands` variable to find the command, similar to `$PATH` on Unix. If the `$Commands` variable

View File

@ -86,7 +86,7 @@ or create a shell script (in /usr/local/bin, etc)
#!/bin/sh
exec mpw AsmIIgs $@
exec mpw AsmIIgs "$@"
mpw looks in the current directory and then in the $MPW:Tools: directory
for the command to run. The MPW $Commands variable is not yet supported.