This website requires JavaScript.
Explore
Help
Register
Sign In
emo
/
busybox
Watch
1
Star
0
Fork
0
You've already forked busybox
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
7c5f18a3ba
busybox
/
shell
/
hush_test
/
hush-misc
/
func5.tests
9 lines
64 B
Plaintext
Raw
Normal View
History
Unescape
Escape
hush_test: test for subshell function syntax Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-05-22 03:54:21 +05:30
f() { echo $1; }
f 1
hush: support "f() (cmd)" functions Many other shells support this construct function old new delta parse_stream 2950 3018 +68 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2018-04-03 18:26:52 +05:30
f() ( echo $1; )
hush_test: test for subshell function syntax Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-05-22 03:54:21 +05:30
f 2
hush: support "f() (cmd)" functions Many other shells support this construct function old new delta parse_stream 2950 3018 +68 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2018-04-03 18:26:52 +05:30
f() ( echo $1 )
hush_test: test for subshell function syntax Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-05-22 03:54:21 +05:30
f 3
Reference in New Issue
Copy Permalink