List<String> getShellCommandArgs(String command) { if (Platform.isWindows) { return ['/C', command]; } return ['-c', command]; }