aboutsummaryrefslogtreecommitdiff
path: root/shell/ash_test/ash-quoting/dollar_repl_slash_bash1.tests
blob: 3fa2f186d9c675a5ad35e40d570275a480ac39a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# The bug here was triggered by:
# * performin pathname expansion because we see [
# * replace operator did not escape \ in replace string

IP=192.168.0.1

rm -f '192.168.0.1['
echo "${IP//./\\.}"
echo "${IP//./\\.}"'[' # bug was here
echo "${IP//./\\.}["   # bug was here
echo "${IP//./\\\\.}[" # bug was here
echo "192\.168\.0\.1["

echo >'192.168.0.1['
echo "${IP//./\\.}"
echo "${IP//./\\.}"'[' # bug was here
echo "${IP//./\\.}["   # bug was here
echo "${IP//./\\\\.}[" # bug was here
echo "192\.168\.0\.1["

rm -f '192.168.0.1['