mirror of
https://github.com/denoland/deno.git
synced 2025-01-16 19:04:02 -05:00
6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
|
const output = new Deno.Command("echo", {
|
||
|
env: {
|
||
|
"LD_PRELOAD": "./libpreload.so",
|
||
|
},
|
||
|
}).spawn();
|