We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c975af commit 2f6627bCopy full SHA for 2f6627b
README.md
@@ -40,3 +40,8 @@ import { bash } from "https://deno.land/x/bash/mod.ts";
40
const result = await bash("echo 'hello world'", { stripTrailingNewline: true });
41
console.log(result); // hello world\n
42
```
43
+
44
+## Required permissions
45
46
+Using `bash` requires the `--allow-run` permission. This is because `bash` uses
47
+`Deno.run` to execute the underlying command.
0 commit comments