public static async Task <bool> ExecEmbeddedSingleLineShellScript(Pod pod, string scriptName) { var script = EmbeddedResourceReader.GetSingleListShellScript(scriptName); return(await Exec2(pod, false, "bash", "-c", script)); }