Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wtfaremyinitials/deno-shell-tag

The simplest way to use a *nix tools in deno. let files = await sh`ls -a`
https://github.com/wtfaremyinitials/deno-shell-tag

deno javascript unix

Last synced: about 2 months ago
JSON representation

The simplest way to use a *nix tools in deno. let files = await sh`ls -a`

Awesome Lists containing this project

README

        

deno-shell-tag
=========

> The simplest way to use a \*nix tools in deno

```ts
import sh from 'https://deno.land/x/shell_tag/mod.js'

let files = await sh`ls -a`
console.log(files.split('\n'))
//=> ['.', '..', 'example.js', 'mod.js', 'readme.md']
```