#!/bin/sh # See LICENSE file for copyright and license details. dir="$(dirname -- "$0")" for cmd in "$dir"/../*/what-architecture-am-i-using; do if printf '%s\n' "$cmd" | grep '/util/what-architecture-am-i-using$' > /dev/null; then continue fi "$cmd" "$@" status=$? if test $status = 0; then exit 0 elif test $status = 1; then printf '%s\n' 'Architecture not recognised' >&2 printf 'UNRECOGNISED\n' exit 1 fi done printf '%s\n' 'Operating system not recognised' >&2 printf 'UNRECOGNISED\n' exit 2