10 lines
55 B
Bash
Executable file
10 lines
55 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if "$@"; then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|
|
|
|
|