Skip to content

c4spar/deno-shell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deno-shell

Deno bindings for deno_task_shell.

Execute deno shell commands in deno.

import { exec, execSync } from "./mod.ts";

// Execute task asynchronous.
await exec("pwd");

// Execute task synchronous.
execSync("pwd");

// Execute task with specified cwd.
await exec("pwd", { cwd: "examples" });

About

Execute deno shell commands in deno.

Resources

License

Stars

2 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors