Lines Matching refs:cmd

46cmd='@@TYPE@@ -a @@VAR@@ ;  @@VAR@@[1]=90 ;       function x { nameref nz=$1 ;              print …
49cmd='@@TYPE@@ -a @@VAR@@=( [1]=90 ) ; function x { nameref nz=$1 ; print …
52cmd='@@TYPE@@ -a @@VAR@@ ; @@VAR@@[1][3]=90 ; function x { nameref nz=$1 ; print…
55cmd='@@TYPE@@ -a @@VAR@@=( [1][3]=90 ) ; function x { nameref nz=$1 ; print…
58cmd='@@TYPE@@ -a @@VAR@@ ; @@VAR@@[1][3][5]=90 ; function x { nameref nz=$1 ; print…
61cmd='@@TYPE@@ -a @@VAR@@=( [1][3][5]=90 ) ; function x { nameref nz=$1 ; print…
64cmd='@@TYPE@@ -a @@VAR@@ ; @@VAR@@[1][3][5]=90 ; function x { nameref nz=${1}[$2][$3][$4] ; print…
67cmd='@@TYPE@@ -A @@VAR@@ ; @@VAR@@[1]=90 ; function x { nameref nz=$1 ; print…
70cmd='@@TYPE@@ -A @@VAR@@=( [1]=90 ) ; function x { nameref nz=$1 ; print…
77 typeset cmd
114 cmd="${tst.cmd//@@TYPE@@/${ty}}"
118 cmd="${cmd//@@VAR@@/z}"
122 cmd="compound c ; ${cmd//@@VAR@@/c.z}"
125 cmd="compound -a c ; ${cmd//@@VAR@@/c[11].z}"
128 cmd="compound -a c ; ${cmd//@@VAR@@/c[17][19].z}"
131 cmd="compound -a c ; ${cmd//@@VAR@@/c[17][19][23][27].z}"
134 cmd="compound -A c ; ${cmd//@@VAR@@/c[info].z}"
138 cmd="compound c ; nameref ncr=c.z ; ${cmd//@@VAR@@/ncr}"
141 cmd="compound -a c ; nameref ncr=c[11].z ; ${cmd//@@VAR@@/ncr}"
144 cmd="compound -a c ; nameref ncr=c[17][19].z ; ${cmd//@@VAR@@/ncr}"
147 cmd="compound -a c ; nameref ncr=c[17][19][23][27].z ; ${cmd//@@VAR@@/ncr}"
150 cmd="compound -A c ; nameref ncr=c[info].z ; ${cmd//@@VAR@@/ncr}"
157 testname="${0}/${cmd}"
159 …out.stderr="${ { out.stdout="${ ${SHELL} -o nounset -o errexit -c "${cmd}" ; (( out.res=$? )) ; }"…