view checkenv.cmd @ 52:39895d44a287

Get help working on Linux.
author David Barts <n5jrn@me.com>
date Thu, 07 May 2020 09:59:28 -0700
parents cd2ca4727b7f
children
line wrap: on
line source

@echo off
SETLOCAL EnableDelayedExpansion

for %%i in (%*) do (
	if "!%%i!"=="" (
		echo ERROR: %%i not set
		exit/b 1
	)
)

exit/b 0