OILS
/
spec
/
testdata
/ bash-source-source.sh
View on Github
|
oilshell.org
13 lines, 10 significant
1
mainfunc() {
2
source spec/testdata/bash-source-pushtemp.sh
"
$@
"
3
}
4
5
main2() {
6
mainfunc a b
7
}
8
9
main1() {
10
main2
11
}
12
13
main1