#!/bin/bash set -eo pipefail dir=${1:-"**"} for f in tests/${dir}/*.lua; do ./lilush "${f}" done