12 lines
194 B
Text
12 lines
194 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
echo 'this stuff should be ignored'
|
||
|
|
||
|
echo '[ looks like a json list]'
|
||
|
|
||
|
echo '{"changed": false, "failed": false, "msg": "good json response"}'
|
||
|
|
||
|
echo 'moar garbage'
|