aboutsummaryrefslogtreecommitdiff
path: root/applets_sh
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2020-01-13 10:33:46 +0000
committerDenys Vlasenko <vda.linux@googlemail.com>2020-04-30 17:23:08 +0200
commit981b2eff814bd186188ad66a32990a6d17b37a3e (patch)
tree9d66d4de595eac03a479de13ea8a66daf69c87cd /applets_sh
parentda7a6dbfa5d78e3d5cec5906b402908505d0fcf9 (diff)
downloadbusybox-w32-981b2eff814bd186188ad66a32990a6d17b37a3e.tar.gz
busybox-w32-981b2eff814bd186188ad66a32990a6d17b37a3e.tar.bz2
busybox-w32-981b2eff814bd186188ad66a32990a6d17b37a3e.zip
mim: run scripts from a specification file
mim runs scripts from a specification file which can be thought of as an extremely limited Makefile. Neither make variables nor dependencies are supported. By default the file 'Mimfile' is read. An example: hello: echo hello $1 clean: rm -rf * The command 'mim' or 'mim hello' will echo 'hello'. Unlike 'make' arguments after the first are available to the script; they don't specify additional targets. mim isn't enabled by default. Enabling it increases the size of the binary by about 500 bytes. Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'applets_sh')
-rwxr-xr-xapplets_sh/mim39
1 files changed, 39 insertions, 0 deletions
diff --git a/applets_sh/mim b/applets_sh/mim
new file mode 100755
index 000000000..2a65c35bb
--- /dev/null
+++ b/applets_sh/mim
@@ -0,0 +1,39 @@
1#!/bin/sh
2MIMFILE="Mimfile"
3if [ $# -ge 2 ] && [ "$1" = "-f" ]
4then
5 MIMFILE="$2"
6 shift 2
7fi
8exec <"$MIMFILE" || exit 1
9{
10 INCASE=false
11 while read -r REPLY
12 do
13 case $REPLY in
14 *:)
15 if ! $INCASE
16 then
17 printf '[ $# -eq 0 ] && set -- "%s"
18TARGET="$1"
19shift
20case "$TARGET" in
21' "${REPLY%:}"
22 else
23 printf ';;\n'
24 fi
25 printf '%s)\n' "${REPLY%:}"
26 INCASE=true
27 ;;
28 "") ;;
29 *) printf '%s\n' "${REPLY##[ ]}";;
30 esac
31 done
32 $INCASE && printf ';;\n'
33 printf '*)
34echo "Unknown command $TARGET"
35exit 1
36;;
37esac
38'
39} | sh -s "$@"