OILS / demo / home-page.sh View on Github | oils.pub

14 lines, 9 significant
1#!bin/osh
2
3shell-func() {
4 echo hi
5}
6
7strict-mode() {
8 shopt --set strict:all
9 if shell-func; then
10 echo bad
11 fi
12}
13
14"$@"