OILS / demo / 02-parse-order.sh View on Github | oilshell.org

13 lines, 4 significant
1#!/usr/bin/env bash
2#
3# Usage:
4# ./14-parse-order.sh <function name>
5
6# Hm bash is the only one that does parsing of $() during execution! It
7# doesn't report any errors here.
8
9if test -f /; then
10 echo $( ; )
11 echo hi
12fi
13