|
Last change
on this file since 3316 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
|
-
Property svn:executable
set to
*
|
|
File size:
414 bytes
|
| Line | |
|---|
| 1 | empty=''
|
|---|
| 2 |
|
|---|
| 3 | echo 'Testing: in ""'
|
|---|
| 4 | for a in ""; do echo ".$a."; done
|
|---|
| 5 |
|
|---|
| 6 | echo 'Testing: in '"''"
|
|---|
| 7 | for a in ''; do echo ".$a."; done
|
|---|
| 8 |
|
|---|
| 9 | echo 'Testing: in $empty'
|
|---|
| 10 | for a in $empty; do echo ".$a."; done
|
|---|
| 11 |
|
|---|
| 12 | echo 'Testing: in $empty""'
|
|---|
| 13 | for a in $empty""; do echo ".$a."; done
|
|---|
| 14 |
|
|---|
| 15 | echo 'Testing: in $empty'"''"
|
|---|
| 16 | for a in $empty''; do echo ".$a."; done
|
|---|
| 17 |
|
|---|
| 18 | echo 'Testing: in "$empty"'
|
|---|
| 19 | for a in "$empty"; do echo ".$a."; done
|
|---|
| 20 |
|
|---|
| 21 | echo Finished
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.