Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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`
- Host: GitHub
- URL: https://github.com/wtfaremyinitials/deno-shell-tag
- Owner: wtfaremyinitials
- Created: 2019-03-12T23:03:57.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-11T03:35:05.000Z (over 4 years ago)
- Last Synced: 2024-10-28T12:15:38.188Z (3 months ago)
- Topics: deno, javascript, unix
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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']
```