14 lines
161 B
Bash
14 lines
161 B
Bash
|
#!/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
|