Skip to main content
Module

x/proc/build

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Go to Latest
File
#!/bin/bash
set -e
deno fmtdeno lint
deno test --allow-run --reload
cd ./examples/warandpeace && ( set -x time ./countwords.sh < ./warandpeace.txt.gz time ./countwords.ts < ./warandpeace.txt.gz time ./countwords2.ts < ./warandpeace.txt.gz echo "a b c d" | ./countwords2.ts || true time ./countwords3.ts < ./warandpeace.txt.gz echo "a b c d" | ./countwords3.ts || true)