11 lines
94 B
Bash
Executable File
11 lines
94 B
Bash
Executable File
# !/usr/bin/bash
|
|
|
|
if [ "${1}" == "fail" ]; then
|
|
echo " ${0}: failing"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
exit 0
|
|
|