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
6
set -o nounset
7
set -o pipefail
8
set -o errexit
9
10
run() {
11
local name=glibc_fnmatch
12
cc -o _tmp/$name demo/$name.c
13
_tmp/$name
14
}
15
16
"
$@
"