#!/bin/sh # based on my dropbox wrap script http://www.murga-linux.com/puppy/viewtopic.php?t=99253& # Wrapps calls to the busybox dpkg so that it is compatible with the standard debian version. ARGS=() for x in $@; do case "$x" in -L) ARGS+=('-l') ;; #remove all options *)ARGS+=($X) esac done dpkg ${ARGS[*]}