commandWhere property

String get commandWhere

Retrieves the system command for finding executables.

Returns: 'where' on Windows, 'which' on other platforms.

Implementation

static String get commandWhere => Platform.isWindows ? 'where' : 'which';