OILS / demo / glibc_fnmatch.sh View on Github | oilshell.org

16 lines, 8 significant
1#!/usr/bin/env bash
2#
3# Usage:
4# demo/glibc_fnmatch.sh run
5
6set -o nounset
7set -o pipefail
8set -o errexit
9
10run() {
11 local name=glibc_fnmatch
12 cc -o _tmp/$name demo/$name.c
13 _tmp/$name
14}
15
16"$@"