|
Last change
on this file since 2820 was 2725, checked in by Bruno Cornec, 15 years ago |
- Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 1 | Source: a*b\*c
|
|---|
| 2 | Replace str: _\\_\z_
|
|---|
| 3 | Pattern: single backslash and star: "replace literal star"
|
|---|
| 4 | Unquoted: a_\_z_b\*c
|
|---|
| 5 | Unquoted =: a_\_z_b\*c
|
|---|
| 6 | Quoted: a_\_\z_b\*c
|
|---|
| 7 | Quoted =: a_\_\z_b\*c
|
|---|
| 8 | Pattern: double backslash and star: "replace backslash and everything after it"
|
|---|
| 9 | Unquoted: a*b_\_z_
|
|---|
| 10 | Unquoted =: a*b_\_z_
|
|---|
| 11 | Quoted: a*b_\_\z_
|
|---|
| 12 | Quoted =: a*b_\_\z_
|
|---|
| 13 |
|
|---|
| 14 | Source: a\bc
|
|---|
| 15 | Replace str: _\\_\z_
|
|---|
| 16 | Pattern: single backslash and b: "replace b"
|
|---|
| 17 | Unquoted: a\_\_z_c
|
|---|
| 18 | Unquoted =: a\_\_z_c
|
|---|
| 19 | Quoted: a\_\_\z_c
|
|---|
| 20 | Quoted =: a\_\_\z_c
|
|---|
| 21 | Pattern: double backslash and b: "replace backslash and b"
|
|---|
| 22 | Unquoted: a_\_z_c
|
|---|
| 23 | Unquoted =: a_\_z_c
|
|---|
| 24 | Quoted: a_\_\z_c
|
|---|
| 25 | Quoted =: a_\_\z_c
|
|---|
| 26 |
|
|---|
| 27 | Source: a\bc
|
|---|
| 28 | Replace str: _\\_\z_ (as variable $s)
|
|---|
| 29 | Pattern: single backslash and b: "replace b"
|
|---|
| 30 | Unquoted: a\_\\_\z_c
|
|---|
| 31 | Unquoted =: a\_\\_\z_c
|
|---|
| 32 | Quoted: a\_\\_\z_c
|
|---|
| 33 | Quoted =: a\_\\_\z_c
|
|---|
| 34 | Pattern: double backslash and b: "replace backslash and b"
|
|---|
| 35 | Unquoted: a_\\_\z_c
|
|---|
| 36 | Unquoted =: a_\\_\z_c
|
|---|
| 37 | Quoted: a_\\_\z_c
|
|---|
| 38 | Quoted =: a_\\_\z_c
|
|---|
| 39 |
|
|---|
| 40 | Done: 0
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.