10 lines
115 B
Bash
10 lines
115 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "first line"
|
||
|
echo "error 1" >&2
|
||
|
echo "second line"
|
||
|
echo "error 2" >&2
|
||
|
echo "third line"
|
||
|
|
||
|
exit 17
|