Undo shell parameter splitting
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Nero 7906c0684e
Make git ignore binaries
5 months ago
.gitignore Make git ignore binaries 5 months ago
Makefile Add make install 5 months ago
README.md Fix typo in readme 5 months ago
sh_quote.c Finalize project 7 months ago
test_sh_quote test: == not portable 6 months ago

README.md

Shell quoting util

This tool was made to handle a specific edge case in shell scripting.

When you want to supply a command to some tool as a shell string, but you only have it as already expanded array.

This doesn't work as expected because $@ is expanded, ending up as multiple arguments to su:

su -c "$@"

This does work as expected:

su -c "$(sh_quote "$@")"

Because all arguments must be relayed, -h or --help cannot be taken into account, so there is no helptext.

When no arguments are given, it returns without producing any output.

Error messages

None. This program cannot fail.

If stdout is not writable, no sensible output will be generated.

If $0 is not set, no output will be generated.

Building

Run make.

Testing

Run make test

The test script can also run on arbitrary programs: ./test_sh_quote /path/to/other_program.