OILS / lazylex / run.sh View on Github | oilshell.org

14 lines, 6 significant
1#!/usr/bin/env bash
2#
3# Usage:
4# ./run.sh <function name>
5
6set -o nounset
7set -o pipefail
8set -o errexit
9
10validate() {
11 tidy -e -q pulp/testdata.html
12}
13
14"$@"