Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 253 Bytes

readme.md

File metadata and controls

12 lines (9 loc) · 253 Bytes

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