Created
July 26, 2020 12:47
-
-
Save piyushchauhan2011/bc951f036ec8cfae4e29b8d402a145f5 to your computer and use it in GitHub Desktop.
Revisions
-
piyushchauhan2011 created this gist
Jul 26, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ let p = Deno.run({ cmd: [ "sh", "-c", ` echo hello echo hello2 cat << EOF pwd: $PWD EOF `, ], }); const { code } = await p.status(); p.close();