Files
nel/run.sh
2026-03-29 11:46:50 +01:00

8 lines
124 B
Bash
Executable File

#/bin/sh
if ! command -v lua &> /dev/null
then
echo "lua could not be found"
exit 1
else
lua -l nellie -e "Run'$@'"
fi