mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
@drybjed discovered this with non-ascii environment variables and command line arguments to script and raw module.
8 lines
87 B
Bash
Executable File
8 lines
87 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Non-ascii arguments:"
|
|
echo $@
|
|
|
|
echo "Non-ascii Env var:"
|
|
echo $option
|