mirror of
https://github.com/cirosantilli/linux-kernel-module-cheat.git
synced 2026-01-13 20:12:26 +00:00
9 lines
175 B
Bash
Executable File
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
|