7 lines
75 B
Bash
7 lines
75 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
out=`$1 --version`
|
||
|
if [ "$out" != "$1 $2" ]; then
|
||
|
exit 1
|
||
|
fi
|