blob: 33bb0e1717ae907c48a1bfec05405a27afa5a57b [file] [log] [blame]
Patrick Bellasif2eac512015-11-27 16:35:57 +00001#!__DEVLIB_SHELL__
2
3CMD=$1
4shift
5
6BUSYBOX=${BUSYBOX:-__DEVLIB_BUSYBOX__}
7GREP=${GREP:-$BUSYBOX grep}
8SED=${SED:-$BUSYBOX sed}
9
10
11################################################################################
12# Main Function Dispatcher
13################################################################################
14
15case $CMD in
16*)
17 echo "Command [$CMD] not supported"
18 exit -1
19esac
20
21# vim: tabstop=4 shiftwidth=4