Exemplo n.º 1
0
        public static async Task <bool> ExecEmbeddedSingleLineShellScript(Pod pod, string scriptName)
        {
            var script = EmbeddedResourceReader.GetSingleListShellScript(scriptName);

            return(await Exec2(pod, false, "bash", "-c", script));
        }