aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var_bash1a.tests
blob: c75c2dc53efdb74098145e3683ea27a16c816a7f (plain)
1
2
3
4
5
6
7
8
9
10
11
parameter=abcdef
offset=2
noffset=-2
echo "parameter     '${parameter}'"
echo "varoffset2    '${parameter:${offset}}'"
echo "varoffset-2   '${parameter:${noffset}}'"
echo "literal '2'   '${parameter:2}'"
# This is not interpreted as ${VAR:POS{:LEN}},
# but as ${VAR:=WORD} - if VAR is unset or null, substitute WORD
echo "literal '-2'  '${parameter:-2}'"
echo "literal ' -2' '${parameter: -2}'"