14 lines
161 B
Bash
Executable File
14 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PACKAGE=sscg
|
|
|
|
# Assume the test will pass.
|
|
result=PASS
|
|
|
|
sscg --help | grep -q -i '^usage:'
|
|
if [ $? -ne 0 ]; then
|
|
result=FAIL
|
|
fi
|
|
|
|
echo $result
|