10 lines
110 B
Bash
10 lines
110 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if command ameba != 0; then
|
||
|
echo "Ameba needs to be installed"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
ameba "$@"
|
||
|
exit $?
|