Skip to content

Instantly share code, notes, and snippets.

@piyushchauhan2011
Created July 26, 2020 12:47
Show Gist options
  • Save piyushchauhan2011/bc951f036ec8cfae4e29b8d402a145f5 to your computer and use it in GitHub Desktop.
Save piyushchauhan2011/bc951f036ec8cfae4e29b8d402a145f5 to your computer and use it in GitHub Desktop.
Heredoc with Deno.run cmd
let p = Deno.run({
cmd: [
"sh",
"-c",
`
echo hello
echo hello2
cat << EOF
pwd: $PWD
EOF
`,
],
});
const { code } = await p.status();
p.close();
@piyushchauhan2011
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment