rwx_shellcheck() { local root="${1}" local file module modules path file="$(mktemp)" modules="$(rwx_main_find "${root}")" while IFS= read -r module; do path="${root}/${module}.${RWX_MAIN_EXTENSION}" echo ". \"${path}\"" >>"${file}" done <