7 lines
112 B
Bash
7 lines
112 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
echo "This test will fail on purpose."
|
||
|
>&2 echo "This test is printing to stderr."
|
||
|
exit 1
|
||
|
|