mirror of
https://github.com/sheumann/hush.git
synced 2025-01-11 08:29:54 +00:00
12 lines
183 B
Plaintext
12 lines
183 B
Plaintext
|
# This testcase checks whether slashes in ${v/a/b} are parsed before
|
||
|
# or after expansions
|
||
|
|
||
|
v='a/b/c'
|
||
|
s='b/c'
|
||
|
r='e/f'
|
||
|
echo "${v/$s}"
|
||
|
echo "${v/$s/d}"
|
||
|
echo "${v/$s/$r}"
|
||
|
|
||
|
echo Done: $?
|