Searched refs:f (Results 1 – 25 of 257) sorted by relevance
1234567891011
31 unset f; echo "f =|$f|"32 unset f; echo "f:1 =|${f:1}|"33 unset f; echo "f:1:2=|${f:1:2}|"34 unset f; echo "f::2 =|${f::2}|"35 unset f; echo "f:1: =|${f:1:}|"36 unset f; echo "f:: =|${f::}|"38 f=; echo "f =|$f|"39 f=; echo "f:1 =|${f:1}|"40 f=; echo "f:1:2=|${f:1:2}|"41 f=; echo "f::2 =|${f::2}|"[all …]
19 f =||20 f:1 =||21 f:1:2=||22 f::2 =||23 f:1: =||24 f:: =||25 f =||26 f:1 =||27 f:1:2=||28 f::2 =||[all …]
23 unset f; echo _$f24 unset f; echo _${f=}25 unset f; echo _${f:=}26 unset f; echo _${f=word}27 unset f; echo _${f:=word}29 f=; echo _$f30 f=; echo _${f=}31 f=; echo _${f:=}32 f=; echo _${f=word}33 f=; echo _${f:=word}[all …]
14 f=f g=g15 echo $? $f $g16 unset f17 echo $? $f $g19 echo $? $f $g22 f=f g=g23 echo $? $f $g24 unset f g25 echo $? $f $g26 f=f g=g[all …]
15 unset f16 echo _$f _${f-} _${f:-} _${f-word} _${f:-word}18 f=19 echo _$f _${f-} _${f:-} _${f-word} _${f:-word}21 f=fff22 echo _$f _${f-} _${f:-} _${f-word} _${f:-word}
37 "$THIS_SH" -c 'unset f; echo _$f' SHELL38 "$THIS_SH" -c 'unset f; echo _${f?}' SHELL39 "$THIS_SH" -c 'unset f; echo _${f:?}' SHELL40 "$THIS_SH" -c 'unset f; echo _${f?message3}' SHELL41 "$THIS_SH" -c 'unset f; echo _${f:?message3}' SHELL42 "$THIS_SH" -c 'unset f; echo _${f?$msg_unset}' SHELL43 "$THIS_SH" -c 'unset f; echo _${f:?$msg_null_or_unset}' SHELL46 "$THIS_SH" -c 'f=; echo _$f' SHELL47 "$THIS_SH" -c 'f=; echo _${f?}' SHELL48 "$THIS_SH" -c 'f=; echo _${f:?}' SHELL[all …]
36 "$THIS_SH" -c 'unset f; echo _$f'37 "$THIS_SH" -c 'unset f; echo _${f?}'38 "$THIS_SH" -c 'unset f; echo _${f:?}'39 "$THIS_SH" -c 'unset f; echo _${f?message3}'40 "$THIS_SH" -c 'unset f; echo _${f:?message3}'41 "$THIS_SH" -c 'unset f; echo _${f?$msg_unset}'42 "$THIS_SH" -c 'unset f; echo _${f:?$msg_null_or_unset}'45 "$THIS_SH" -c 'f=; echo _$f'46 "$THIS_SH" -c 'f=; echo _${f?}'47 "$THIS_SH" -c 'f=; echo _${f:?}'[all …]
16 f=f g=g17 echo $? $f $g18 unset f19 echo $? $f $g21 echo $? $f $g24 f=f g=g25 echo $? $f $g26 unset f g27 echo $? $f $g28 f=f g=g[all …]
1 f() { echo start:; for i; do echo "|$i|"; done; echo end; }5 f ${x:+''}6 f ${x:+'' }7 f ${x:+ ''}8 f ${x:+ '' }9 f ${x:+'' ''}13 f ${x:+""}14 f ${x:+"" }15 f ${x:+ ""}16 f ${x:+ "" }[all …]
1 f() { for i; do echo "|$i|"; done; }4 f ${v/'x'/"y z"}5 f ${v/"x"/'y z'}6 f "${v/'x'/"y z"}"7 f "${v/"x"/'y z'}"9 f ${v//'x'/"y z"}10 f ${v//"x"/'y z'}11 f "${v//'x'/"y z"}"12 f "${v//"x"/'y z'}"
1 function f() { echo $1; }2 f 14 function f() ( echo $1; )5 f 27 function f() ( echo $1 )8 f 310 function f() for i in 1 2 3; do13 f15 function f { echo $1; }16 f 1[all …]
1 f() { echo $1; }2 f 14 f() ( echo $1; )5 f 27 f() ( echo $1 )8 f 3
1 f=12 cat <<- EOF-f""3 exit EOF-f5 echo $f8 EOF-f9 EOF-f f10 EOF-f 11 EOF-f
1 f=12 cat <<- EOF-f3 exit EOF-f5 echo $f8 EOF-f9 EOF-f f10 EOF-f 11 EOF-f
1 exit EOF-f3 echo $f6 EOF-f7 EOF-f f8 EOF-f