wtfaremyinitials / deno-shell-tag

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

deno-shell-tag

The simplest way to use a *nix tools in deno

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']

About

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


Languages

Language:JavaScript 100.0%