Files
Ciro Santilli 2c084f5fb2 run: create -F option to run base64 encoded command after busybox init
Fix ./run -h which was showing the build help instead.
2018-04-19 08:57:35 +01:00

9 lines
175 B
Bash
Executable File

#!/bin/sh
echo "hello S98"
if [ -n "$lkmc_eval" ]; then
eval "$lkmc_eval"
elif [ -n "$lkmc_eval_base64" ]; then
eval "$(printf "$lkmc_eval_base64" | base64 -d)"
fi
exit 0