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

17 lines, 7 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
10# Copied into vendor/ afterward
11download-greatest() {
12 wget --directory _tmp \
13 https://github.com/silentbicycle/greatest/archive/v1.4.2.tar.gz
14}
15
16
17"$@"