#!/bin/sh # vector to the real script # always prefer the scripts on the removable media set -e command=${1} shift if [ -x bin/${command} ]; then bin/${command} "${*}" else /usr/lib/apt-walkabout/${command} "${*}" fi