File: dollar-at-star11.sub

package info (click to toggle)
bash 5.2.37-2
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 41,300 kB
  • sloc: ansic: 117,576; sh: 8,449; yacc: 5,448; makefile: 4,624; perl: 4,227; asm: 48; awk: 23; sed: 16
file content (80 lines) | stat: -rw-r--r-- 1,171 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
a[0]='/'
set -- /

# these should all result in the empty (null) string

recho "${a[0]%?}"
recho "${a[*]%?}"
recho "${a[@]%?}"

recho "${*%?}"
recho "${@%?}"

recho "${a[0]#?}"
recho "${a[*]#?}"
recho "${a[@]#?}"

recho "${*#?}"
recho "${@#?}"

recho "${a[0]/\//}"
recho "${a[*]/\//}"
recho "${a[@]/\//}"

recho "${*/\//}"
recho "${@/\//}"

recho "${a[0]:1:1}"
# these next four will all echo /

# arrays are zero-based
recho "${a[*]:0:1}"
recho "${a[@]:0:1}"
# but the positional parameters start at 1
recho "${*:1:1}"
recho "${@:1:1}"

a[0]=''
set -- ''

# arrays are zero-based
recho "${a[*]:0:1}"
recho "${a[@]:0:1}"

recho "${*:1:1}"
recho "${@:1:1}"

# these should all result in the empty (null) string, or quoted as such

recho "${a[0]@Q}"
recho "${a[*]@Q}"
recho "${a[@]@Q}"

recho "${*@Q}"
recho "${@@Q}"

recho "${a[0]@L}"
recho "${a[*]@L}"
recho "${a[@]@L}"

recho "${*@L}"
recho "${@@L}"

# examples from the bug report
unset -v a

a[0]='/'
for i in "${a[@]%/}"; do recho "$i"; done

a[0]=''
for i in "${a[@]}"; do recho "$i"; done

a[0]='/'
a[1]="//"
for i in "${a[@]%/}"; do recho "$i"; done

unset -v x y
x=('/')
y=("${x[@]%/}")

echo "${#x[@]}:${#y[@]}"