c0a8cd950b
@drybjed discovered this with non-ascii environment variables and command line arguments to script and raw module.
7 lines
87 B
Bash
Executable file
7 lines
87 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "Non-ascii arguments:"
|
|
echo $@
|
|
|
|
echo "Non-ascii Env var:"
|
|
echo $option
|