summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/shell/hush_test/hush-vars/var_in_pipes.tests
blob: 3f8cd2729483b6468093ccb0b1dfd83f068f1a4e (plain)
1
2
3
4
5
6
7
b=1 env | grep ^b=
true | b=2 env | grep ^b=
a=1 true | b=3 env | grep ^b=

(b=4 env) | grep ^b=
(true | b=5 env) | grep ^b=
(a=1 true | b=6 env) | grep ^b=