From fbf44854a3b7a32a0a0ff1a03f4163d25f2d62af Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 3 Apr 2018 14:56:52 +0200 Subject: 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 --- shell/ash_test/ash-misc/func_compound1.tests | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 shell/ash_test/ash-misc/func_compound1.tests (limited to 'shell/ash_test/ash-misc/func_compound1.tests') diff --git a/shell/ash_test/ash-misc/func_compound1.tests b/shell/ash_test/ash-misc/func_compound1.tests new file mode 100755 index 0000000..20c8bf1 --- /dev/null +++ b/shell/ash_test/ash-misc/func_compound1.tests @@ -0,0 +1,4 @@ +f() for i in 1 2 3; do + echo $i +done +f -- cgit v1.1