shellfn icon indicating copy to clipboard operation
shellfn copied to clipboard

Add requirements

Open synek317 opened this issue 3 years ago • 0 comments

E.g.

#[shell requirements="xmlstarlet"]
fn foo(...) { ... }
```

or maybe?

```
#[shell]
fn foo(...) {
  shell::requires("xmlstarlet");
  ...
}
```
should check if `xmlstarlet` is present and if not, asks for permission and installs it

synek317 avatar Mar 23 '22 13:03 synek317