xref
: /
busybox-1.35.0
/
shell
/
ash_test
/
ash-misc
/
func5.tests
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
f() { echo $1; }
2
f 1
3
4
f() ( echo $1; )
5
f 2
6
7
f() ( echo $1 )
8
f 3
9