mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
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
|