#!/bin/sh if command -q ameba != 0; then echo "Ameba needs to be installed" exit 1 fi ameba --all --fix "$@" exit $?