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